Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
00d7cd8ab8db2c1e1f591ade828f88a1a973d70f
/
Parser
b7e9525
bpo-36287: Make ast.dump() not output optional fields and attributes with default values. (GH-18843)
by Serhiy Storchaka
· 5 years ago
d7a04a8
Fix typo in the parser generator (GH-18603)
by xatier
· 5 years ago
9e5d30c
bpo-39882: Py_FatalError() logs the function name (GH-18819)
by Victor Stinner
· 5 years ago
d82e469
bpo-39639: Remove the AST "Suite" node and associated code (GH-18513)
by Batuhan Taşkaya
· 5 years ago
384f3c5
closes bpo-39721: Fix constness of members of tok_state struct. (GH-18600)
by Andy Lester
· 5 years ago
0cc6b5e
bpo-39219: Fix SyntaxError attributes in the tokenizer. (GH-17828)
by Serhiy Storchaka
· 5 years ago
f3e7ea5
bpo-39500: Document PyUnicode_IsIdentifier() function (GH-18397)
by Victor Stinner
· 6 years ago
d2f9667
bpo-38823: Fix refleaks in _ast initialization error path (GH-17276)
by Brandt Bucher
· 6 years ago
45cf5db
Allow pgen to produce a DOT format dump of the grammar (GH-18005)
by Pablo Galindo
· 6 years ago
d23f782
Remove unused functions in Parser/parsetok.c (GH-17365)
by Emmanuel Arias
· 6 years ago
7ba6f18
bpo-39307: Fix memory leak on error path in parsetok (GH-17953)
by Alex Henrie
· 6 years ago
5ec91f7
bpo-39209: Manage correctly multi-line tokens in interactive mode (GH-17860)
by Pablo Galindo
· 6 years ago
a9d0a6a
bpo-36500: Simplify PCbuild/build.bat and prevent path separator changing in comments (GH-17644)
by Steve Dower
· 6 years ago
109fc27
bpo-38673: dont switch to ps2 if the line starts with comment or whitespace (GH-17421)
by Batuhan Taşkaya
· 6 years ago
9def81a
bpo-36876: Moved Parser/listnode.c statics to interpreter state. (GH-16328)
by Vinay Sajip
· 6 years ago
bdac32e
closes bpo-38648: Remove double tp_free slot in Python-ast.c. (GH-17002)
by Max Bernstein
· 6 years ago
0b60f64
bpo-11410: Standardize and use symbol visibility attributes across POSIX and Windows. (GH-16347)
by Vinay Sajip
· 6 years ago
a05fcd3
bpo-38425: Fix ‘res’ may be used uninitialized warning (GH-16688)
by Dong-hee Na
· 6 years ago
3368f3c
bpo-38140: Make dict and weakref offsets opaque for C heap types (#16076)
by Eddie Elizondo
· 6 years ago
0247e80
Fix leaks in Python-ast.c (#16127)
by Eddie Elizondo
· 6 years ago
421a72a
bpo-21120: Exclude Python-ast.h, ast.h and asdl.h from the limited API (#14634)
by Zackery Spytz
· 6 years ago
ac46eb4
bpo-38113: Update the Python-ast.c generator to PEP384 (gh-15957)
by Dino Viehland
· 6 years ago
43c9731
bpo-38083: Minor improvements in asdl_c.py and Python-ast.c. (GH-15824)
by Serhiy Storchaka
· 6 years ago
fa3a38d
Mark files as executable that are meant as scripts. (GH-15354)
by Greg Price
· 6 years ago
c638521
Fix typo in the algorithm description (GH-15774)
by Pablo Galindo
· 6 years ago
43710b6
Fix typos in the documentation of Parser/pgen (GH-15416)
by Shashi Ranjan
· 6 years ago
71876fa
Refactor Parser/pgen and add documentation and explanations (GH-15373)
by Pablo Galindo
· 6 years ago
69f37bc
Indent code inside if block. (GH-15284)
by Hansraj Das
· 6 years ago
5b94f35
Fix `SyntaxError` indicator printing too many spaces for multi-line strings (GH-14433)
by Anthony Sottile
· 6 years ago
e018dc5
Remove duplicate call to strip method in Parser/pgen/token.py (GH-14938)
by Hansraj Das
· 6 years ago
cd6e83b
bpo-37593: Swap the positions of posonlyargs and args in the constructor of ast.parameters nodes (GH-14778)
by Pablo Galindo
· 6 years ago
022ac0a
bpo-37253: Remove PyAST_obj2mod_ex() function (GH-14020)
by Victor Stinner
· 6 years ago
530f506
bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (GH-13464)
by Jeroen Demeyer
· 6 years ago
6f6ff8a
bpo-37050: Remove expr_text from FormattedValue ast node, use Constant node instead (GH-13597)
by Eric V. Smith
· 6 years ago
b82e17e
bpo-36842: Implement PEP 578 (GH-12613)
by Steve Dower
· 6 years ago
d8a82e2
bpo-36878: Only allow text after `# type: ignore` if first character ASCII (GH-13504)
by Michael J. Sullivan
· 6 years ago
933e150
bpo-36878: Track extra text added to 'type: ignore' in the AST (GH-13479)
by Michael J. Sullivan
· 6 years ago
565b4f1
bpo-34616: Add PyCF_ALLOW_TOP_LEVEL_AWAIT to allow top-level await (GH-13148)
by Matthias Bussonnier
· 6 years ago
abea73b
bpo-2180: Treat line continuation at EOF as a `SyntaxError` (GH-13401)
by Anthony Sottile
· 6 years ago
d8320ec
bpo-36878: Allow extra text after `# type: ignore` comments (GH-13238)
by Michael J. Sullivan
· 6 years ago
9a4135e
bpo-36817: Add f-string debugging using '='. (GH-13123)
by Eric V. Smith
· 6 years ago
8c77b8c
bpo-36540: PEP 570 -- Implementation (GH-12701)
by Pablo Galindo
· 6 years ago
09415ff
fix warnings by adding more const (GH-12924)
by Inada Naoki
· 6 years ago
84b4784
use `const` in graminit.c (GH-12713)
by tyomitch
· 6 years ago
f2cf1e3
bpo-36623: Clean parser headers and include files (GH-12253)
by Pablo Galindo
· 6 years ago
cda139d
bpo-36459: Fix a possible double PyMem_FREE() due to tokenizer.c's tok_nextc() (12601)
by Zackery Spytz
· 6 years ago
91759d9
bpo-36143: Regenerate Lib/keyword.py from the Grammar and Tokens file using pgen (GH-12456)
by Pablo Galindo
· 6 years ago
ed5e29c
bpo-36385: Add ``elif`` sentence on to avoid multiple ``if`` (GH-12478)
by Emmanuel Arias
· 6 years ago
cb90c89
bpo-36367: Free buffer if realloc fails in tokenize.c (GH-12442)
by Pablo Galindo
· 6 years ago
10f8ce6
bpo-36280: Add Constant.kind field (GH-12295)
by Guido van Rossum
· 6 years ago
1b304f9
Remove d_initial from the parser as it is unused (GH-12212)
by tyomitch
· 6 years ago
495da29
bpo-35975: Support parsing earlier minor versions of Python 3 (GH-12086)
by Guido van Rossum
· 6 years ago
d8b3a98
bpo-36187: Remove NamedStore. (GH-12167)
by Serhiy Storchaka
· 6 years ago
8bc401a
Clean implementation of Parser/pgen and fix some style issues (GH-12156)
by Pablo Galindo
· 6 years ago
8589f14
Remove some code which has been dead since 1994 (#12136)
by Alex Gaynor
· 6 years ago
1f24a71
bpo-35808: Retire pgen and use pgen2 to generate the parser (GH-11814)
by Pablo Galindo
· 6 years ago
b9d2e97
Fix potential memory leak in parsetok.c (GH-11832)
by Pablo Galindo
· 6 years ago
d2b4c19
bpo-35879: Fix type comment leaks (GH-11728)
by Guido van Rossum
· 7 years ago
3a32e3b
bpo-35766 follow-up: Kill half-support for FunctionType in PyAST_obj2mod (#11714)
by Guido van Rossum
· 7 years ago
dcfcd14
bpo-35766: Merge typed_ast back into CPython (GH-11645)
by Guido van Rossum
· 7 years ago
8f59ee0
bpo-35224: PEP 572 Implementation (#10497)
by Emily Morehouse
· 7 years ago
9932a22
bpo-33416: Add end positions to Python AST (GH-11605)
by Ivan Levkivskyi
· 7 years ago
995d9b9
bpo-16806: Fix `lineno` and `col_offset` for multi-line string tokens (GH-10021)
by Anthony Sottile
· 7 years ago
8ac6581
bpo-30455: Generate all token related code and docs from Grammar/Tokens. (GH-10370)
by Serhiy Storchaka
· 7 years ago
94cf308
bpo-33306: Improve SyntaxError messages for unbalanced parentheses. (GH-6516)
by Serhiy Storchaka
· 7 years ago
4c49da0
bpo-35436: Add missing PyErr_NoMemory() calls and other minor bug fixes. (GH-11015)
by Zackery Spytz
· 7 years ago
3bb183d
bpo-35177, Python-ast.h: Fix "Yield" compiler warning (GH-10664)
by Victor Stinner
· 7 years ago
621cebe
bpo-35081: Rename internal headers (GH-10275)
by Victor Stinner
· 7 years ago
5f2df88
bpo-35177: Add dependencies between header files (GH-10361)
by Victor Stinner
· 7 years ago
50b4857
bpo-35081: Add _PyThreadState_GET() internal macro (GH-10266)
by Victor Stinner
· 7 years ago
27e2d1f
bpo-35081: Add pycore_ prefix to internal header files (GH-10263)
by Victor Stinner
· 7 years ago
3f22811
bpo-32892: Use ast.Constant instead of specific constant AST types. (GH-9445)
by Serhiy Storchaka
· 7 years ago
025eb98
bpo-34683: Make SyntaxError column offsets consistently 1-indexed (gh-9338)
by Ammar Askar
· 7 years ago
e502451
closes bpo-34646: Remove PyAPI_* macros from declarations. (GH-9218)
by Benjamin Peterson
· 7 years ago
5061a74
Remove unneeded PyUnicode_READY() in tokenizer.c (GH-9114)
by Zackery Spytz
· 7 years ago
3e26e42
bpo-34400: Fix more undefined behavior in parsetok.c (GH-8833)
by Zackery Spytz
· 7 years ago
7c4ab2a
closes bpo-34400: Fix undefined behavior in parsetok(). (GH-4439)
by Zackery Spytz
· 7 years ago
53b7d4e
bpo-34170: Add _PyCoreConfig.bytes_warning (GH-8447)
by Victor Stinner
· 7 years ago
aba24ff
bpo-34084: Fix setting an error message for the "Barry as BDFL" easter egg. (GH-8262)
by Serhiy Storchaka
· 7 years ago
c884616
Fix Windows compiler warning in tokenize.c (GH-8359)
by Victor Stinner
· 7 years ago
ce75df3
bpo-30237: Output error when ReadConsole is canceled by CancelSynchronousIo. (GH-7911)
by ValeriyaSinevich
· 7 years ago
cf7303e
bpo-33305: Improve SyntaxError for invalid numerical literals. (GH-6517)
by Serhiy Storchaka
· 7 years ago
9b9d58f
bpo-31546: Fix input hook integration (GH-7978)
by Thomas A Caswell
· 7 years ago
a5c4228
bpo-33677: Fix signatures of tp_clear handlers for AST and deque. (GH-7196)
by Serhiy Storchaka
· 7 years ago
73cbe7a
bpo-32911: Revert bpo-29463. (GH-7121) (GH-7197)
by Serhiy Storchaka
· 7 years ago
f320be7
bpo-32571: Avoid raising unneeded AttributeError and silencing it in C code (GH-5222)
by Serhiy Storchaka
· 8 years ago
0a37a30
closes bpo-32460: ensure all non-static globals have initializers (#5061)
by Benjamin Peterson
· 8 years ago
598ceae
bpo-32150: Expand tabs to spaces in C files. (#4583)
by Serhiy Storchaka
· 8 years ago
9e87e77
bpo-32096: Remove obj and mem from _PyRuntime (#4532)
by Victor Stinner
· 8 years ago
f2ddc6a
tokenizer: Remove unused tabs options (#4422)
by Victor Stinner
· 8 years ago
f7e5b56
bpo-32030: Split Py_Main() into subfunctions (#4399)
by Victor Stinner
· 8 years ago
bba2239
bpo-31572: Get rid of _PyObject_HasAttrId() in the ASDL parser. (#3725)
by Serhiy Storchaka
· 8 years ago
ac31770
bpo-30406: Make async and await proper keywords (#1669)
by Jelle Zijlstra
· 8 years ago
b091bec
bpo-31536: Avoid wholesale rebuild after `make regen-all` (#3678)
by Antoine Pitrou
· 8 years ago
5d84cb3
bpo-31464: asdl_c.py no longer emits trailing spaces in Python-ast.h. (#3568)
by Serhiy Storchaka
· 8 years ago
b2e5794
bpo-31338 (#3374)
by Barry Warsaw
· 8 years ago
2ebc5ce
bpo-30860: Consolidate stateful runtime globals. (#3397)
by Eric Snow
· 8 years ago
a6a4dc8
bpo-31370: Remove support for threads-less builds (#3385)
by Antoine Pitrou
· 8 years ago
05351c1
Revert "bpo-30860: Consolidate stateful runtime globals." (#3379)
by Eric Snow
· 8 years ago
76d5abc
bpo-30860: Consolidate stateful runtime globals. (#2594)
by Eric Snow
· 8 years ago
Next »