First install dependicies by:
pip install -r requirements/base.txt && pip install -r requirements/dev.txt
or if you want just to test:
pip install -r requirements/base.txt && pip install -r requirements/test.txt
And then you could test by:
./test.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defn combine-symbol [x y] | |
(symbol (str x y))) | |
(defmacro is [char token] | |
`(~(combine-symbol '.is token) ; combind .is with token name | |
Tokenizer ~char)) | |
(defmacro set-token-type [token-type] | |
`(def token-type (~(combine-symbol '.- (clojure.string/upper-case (str token-type))) TOKEN_TYPE))) |
다음 질문을 한글로 정리한 것입니다.
또한 다시 초기화되버린 배경사진을 바꾸느라 다시 검색할 저를 위한 것입니다. 😭
$ locate ubuntu.css
로 ubuntu.css
를 찾고 미리 백업을 해두세요.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<import> | |
re | |
psycopg2 | |
model | |
[flask [Flask request jsonify]] | |
[flask_cors CORS] | |
</import> | |
<def | |
app = <Flask>__name__</Flask> |
- 마크다운 링크 수정: PyCQA/pyflakes#409
- 에러메세지 수정: PyCQA/pyflakes#390
- 파이프로 넣었을 때에 SyntaxError가 나면 결과를 제대로 반환하지 않음: PyCQA/pyflakes#357
- 조건문에서 할당은 되지만 삭제는 무시됨: PyCQA/pyflakes#363
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import ply.lex as lex | |
from ply.lex import LexToken | |
import ply.yacc as yacc | |
tokens = ('ID', | |
'COLON', | |
'WS', | |
'NEWLINE', | |
'INDENT', |
test gist from gist cli
OlderNewer