일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- codewar
- pyenv
- 유닉스의탄생
- 규칙없음
- GlobalInterprintLock
- maxlinelength
- springboot
- organizeImports
- vscode
- 코로나백신
- opensouce
- printer_helper
- 조엘온소프트웨어
- 독후감
- typevar
- ProxyServer
- flake8
- Lint
- 글쓰기가필요하지않은인생은없다
- 오큘러스퀘스트2
- restfulapi
- codewars
- httppretty
- python
- conf
- Algorithm
- goalng
- pep8
- Golang
- loadimpact
- Today
- Total
목록python (3)
일상적 이야기들.
https://wiki.python.org/moin/GlobalInterpreterLock GIL 은 무엇인가 CPython에서 존재하는 개념으로, Jython, IronPython인 경우에는 GIL 이 존재하지 않습니다. GIL 은 Global Interprint Lock의 약어입니다. In CPython, the global interpreter lock, or GIL, is a mutex that protects access to Python objects, preventing multiple threads from executing Python bytecodes at once. This lock is necessary mainly because CPython's memory manageme..
(venv) [~/Public/leetcode]$ flake8 97_Interleaving\ String.py 97_Interleaving String.py:7:58: E203 whitespace before ':' 97_Interleaving String.py:10:62: E203 whitespace before ':' 97_Interleaving String.py:45:80: E501 line too long (111 > 79 characters) 97_Interleaving String.py:46:80: E501 line too long (111 > 79 characters) 97_Interleaving String.py:47:80: E501 line too long (211 > 79 charact..
TestCode 지금 있는 속한 팀에 있기 전, 바로 직전에는 QA팀에서 Tool을 만들었다. 그때도 동일하게 테스트코드를 작성을 하였지만, 이 글에서 이야기하는 테스트코드와는 결이 달랐다. 개발자가 자신이 작성한 코드에 대한 최소한의 보증수표를 붙혀주는 것이 TestCase 작성인 것 같다. 하지만 개발자가 작성하는 TestCase에는 함정이 있을 수도 있다. 왜냐하면 자신이 작성한 코드이기때문에 방어적으로 코드를 작성하게 되는 것 같다. 실 사용자들은 기상천외한 값들을 넣을 수 있기때문에 따로 QA팀이 있고, 해당 팀에서 매뉴얼로든 프로그램이든 여러가지 케이스를 테스트하게 된다. 그 중에 나는 End-User 입장에서 테스트코드를 작성을 하였기에, PyTest로 작성하는 코드와는 달랐다. Pytest..