Sign in
chromium
/
external
/
github.com
/
python
/
cpython
/
refs/tags/v3.4.8
/
Parser
tag
3638625163055d91be873446d3f63f68f3551fd8
tagger
Larry Hastings <larry@hastings.org>
Sun Feb 04 23:41:54 2018
object
a61d7f2490fd677343c28ac53e1b41cdb0e1d998
Python 3.4.8
26d998c
properly handle the single null-byte file (closes #24022)
by Benjamin Peterson
· 9 years ago
0d44111
Issue #25388: Fixed tokenizer crash when processing undecodable source code
by Serhiy Storchaka
· 10 years ago
d73aca7
do not call into python api if an exception is set (#24022)
by Benjamin Peterson
· 10 years ago
c416162
allow the keyword else immediately after (no space) an integer (closes #21642)
by Benjamin Peterson
· 11 years ago
78f1e4c
Merge with 3.3
by Martin v. Löwis
· 11 years ago
815b41b
Issue #20731: Properly position in source code files even if they
by Martin v. Löwis
· 11 years ago
42ec031
merge 3.3 (#20588)
by Benjamin Peterson
· 12 years ago
c2f665e
don't put runtime values in array initializer for C89 compliance (closes #20588)
by Benjamin Peterson
· 12 years ago
5940b92
Do not reset the line number because we already set file position to correct
by Serhiy Storchaka
· 12 years ago
1064a13
Do not reset the line number because we already set file position to correct
by Serhiy Storchaka
· 12 years ago
7282ff6
Issue #18960: Fix bugs with Python source code encoding in the second line.
by Serhiy Storchaka
· 12 years ago
768c16c
Issue #18960: Fix bugs with Python source code encoding in the second line.
by Serhiy Storchaka
· 12 years ago
af01f66
Issue #16136: Remove VMS support and VMS-related code
by Christian Heimes
· 12 years ago
724b828
upcast int to size_t to silence two autological-constant-out-of-range-compare warnings with clang.
by Christian Heimes
· 12 years ago
cad876d
Fix a compiler warning on Windows 64-bit in parsetok.c
by Victor Stinner
· 12 years ago
3a8a333
Fix compiler warnings on Windows 64-bit in grammar.c
by Victor Stinner
· 12 years ago
c679227
Issue #1772673: The type of `char*` arguments now changed to `const char*`.
by Serhiy Storchaka
· 12 years ago
c548660
Issue #16742: My fix on PyOS_StdioReadline() was incomplete, PyMem_FREE() was
by Victor Stinner
· 12 years ago
d01d396e
Issue #4555: All exported C symbols are now prefixed with either "Py" or "_Py".
by Antoine Pitrou
· 12 years ago
2fe9bac
Close #16742: Fix misuse of memory allocations in PyOS_Readline()
by Victor Stinner
· 12 years ago
1891cff
Move open outside try/finally
by Eli Bendersky
· 12 years ago
9908123
Don't use fancy new Python features like 'with' - some bots don't have them
by Eli Bendersky
· 12 years ago
58fe1b1
Normalize whitespace
by Eli Bendersky
· 12 years ago
b788a38
Small fixes in Parser/asdl.py - no change in functionality.
by Eli Bendersky
· 12 years ago
daf4555
Issue #18571: Implementation of the PEP 446: file descriptors and file handles
by Victor Stinner
· 12 years ago
14e461d
Close #11619: The parser and the import machinery do not encode Unicode
by Victor Stinner
· 12 years ago
d640fe2
#18803: merge with 3.3.
by Ezio Melotti
· 12 years ago
7c4a7e6
#18803: fix more typos. Patch by Févry Thibault.
by Ezio Melotti
· 12 years ago
9ed5f27
Issue #18722: Remove uses of the "register" keyword in C code.
by Antoine Pitrou
· 12 years ago
73207e0
Issue #18368: PyOS_StdioReadline() no longer leaks memory when realloc() fails.
by Christian Heimes
· 12 years ago
9ae513c
Issue #18368: PyOS_StdioReadline() no longer leaks memory when realloc() fails.
by Christian Heimes
· 12 years ago
1289565
Silence warning about set but unused variable inside compile_atom() in non-debug builds
by Christian Heimes
· 12 years ago
5e4d372
Silence warning about set but unused variable inside compile_atom() in non-debug builds
by Christian Heimes
· 12 years ago
b7f1b38
Issue #18552: Check return value of PyArena_AddPyObject() in obj2ast_object().
by Christian Heimes
· 12 years ago
70c94e7
Issue #18552: Check return value of PyArena_AddPyObject() in obj2ast_object().
by Christian Heimes
· 12 years ago
b318990
(Merge 3.3) Parser/asdl_c.py: use Py_CLEAR()
by Victor Stinner
· 12 years ago
1acc129
Parser/asdl_c.py: use Py_CLEAR()
by Victor Stinner
· 12 years ago
ee4b59c
(Merge 3.3) According to the PEP 7, C code must "use 4-space indents"
by Victor Stinner
· 12 years ago
ce72e1c
According to the PEP 7, C code must "use 4-space indents"
by Victor Stinner
· 12 years ago
7b3902a
Some compilers complain about 'control reaches end of non-void function'
by Christian Heimes
· 12 years ago
1eb0cb1
Some compilers complain about 'control reaches end of non-void function'
by Christian Heimes
· 12 years ago
826b754
Add sanity check to PyGrammar_LabelRepr() in order to catch invalid tokens when debugging
by Christian Heimes
· 12 years ago
53d2dc4
Add sanity check to PyGrammar_LabelRepr() in order to catch invalid tokens when debugging
by Christian Heimes
· 12 years ago
bdf630c
Issue #18408: Fix Python-ast.c: handle init_types() failure (ex: MemoryError)
by Victor Stinner
· 12 years ago
cb2226c
merge 3.3
by Benjamin Peterson
· 12 years ago
265fba4
move declaration to top of block
by Benjamin Peterson
· 12 years ago
fd9c020
merge 3.3 (closes #18470)
by Benjamin Peterson
· 12 years ago
2dbfd88
check the return value of new_string() (closes #18470)
by Benjamin Peterson
· 12 years ago
526daab
Issue #18408: parsetok() must not write into stderr on memory allocation error
by Victor Stinner
· 12 years ago
3bf5f53
Issue #18408: parsetok() must not write into stderr on memory allocation error
by Victor Stinner
· 12 years ago
22ed7fe
Fix resource leak in parser, free node ptr
by Christian Heimes
· 12 years ago
9670543
Issue #18038: SyntaxError raised during compilation sources with illegal
by Serhiy Storchaka
· 12 years ago
3af14aa
Issue #18038: SyntaxError raised during compilation sources with illegal
by Serhiy Storchaka
· 12 years ago
7969773
Issue #9566: Fix compiler warning on Windows 64-bit
by Victor Stinner
· 12 years ago
8d89c2a
change AST codegen to use PyModule_AddIntMacro
by Benjamin Peterson
· 12 years ago
7654ab9
placate msvc
by Benjamin Peterson
· 12 years ago
b72406b
refactor to fix refleaks
by Benjamin Peterson
· 12 years ago
cda75be
unify some ast.argument's attrs; change Attribute column offset (closes #16795)
by Benjamin Peterson
· 12 years ago
b26a9b1
Replace WaitForSingleObject with WaitForSingleObjectEx,
by Martin v. Löwis
· 13 years ago
442f209
create NameConstant AST class for None, True, and False literals (closes #16619)
by Benjamin Peterson
· 13 years ago
073f067
Issue #16546: merge fix from 3.3
by Mark Dickinson
· 13 years ago
ded35ae
Issue #16546: make ast.YieldFrom argument mandatory.
by Mark Dickinson
· 13 years ago
742b2f8
make PyGrammar_LabelRepr return a const char * (closes #16369)
by Benjamin Peterson
· 13 years ago
d084558
make _PyParser_TokenNames const
by Benjamin Peterson
· 13 years ago
aee3c76
- Issue #16262: fix out-of-src-tree builds, if mercurial is not installed.
by Matthias Klose
· 13 years ago
8a9cc52
#15923: merge with 3.2.
by Ezio Melotti
· 13 years ago
cb2916a
#15923: fix a mistake in asdl_c.py that resulted in a TypeError after 2801bf875a24 (see #15801).
by Ezio Melotti
· 13 years ago
ca8aa4a
Issue #15144: Fix possible integer overflow when handling pointers as integer values, by using Py_uintptr_t instead of size_t.
by Antoine Pitrou
· 13 years ago
cc98887
Remove unused variables in parsetok().
by Georg Brandl
· 13 years ago
88ca04e
MERGE: Closes #15512: Correct __sizeof__ support for parser
by Jesus Cea
· 13 years ago
e9c5318
Closes #15512: Correct __sizeof__ support for parser
by Jesus Cea
· 13 years ago
481ae50
construct fields in the right order (closes #15517)
by Benjamin Peterson
· 13 years ago
8107176
add gc support to the AST base type (closes #15293)
by Benjamin Peterson
· 13 years ago
5075074
Issue #15291: Fix a memory leak where AST nodes where not properly deallocated.
by Antoine Pitrou
· 13 years ago
035997f
Issue #1677: Unused variable warning in Non-Windows
by Jesus Cea
· 13 years ago
9175c3d
Issue #1677: Handle better a race condition between the interactive interpreter and
by Tim Golden
· 13 years ago
b92b757
Issue #1677: Handle better a race condition between the interactive interpreter and
by Tim Golden
· 13 years ago
0b3847d
Issue #15096: Drop support for the ur string prefix
by Christian Heimes
· 13 years ago
77fa937
use Py_ssize_t for ast sequence lengths
by Benjamin Peterson
· 13 years ago
ce58ed3
Merge with 3.2: issue #14433
by Martin v. Löwis
· 13 years ago
e654c11
Issue #14433: Prevent msvcrt crash in interactive prompt when stdin is closed.
by Martin v. Löwis
· 13 years ago
1767e02
free AST's dict
by Benjamin Peterson
· 13 years ago
45e50de
Try to fix compilation of Python-ast.c on Visual Studio 2008
by Victor Stinner
· 13 years ago
7e0dbfb
give the AST class a __dict__
by Benjamin Peterson
· 13 years ago
6ecf77b
Basic support for PEP 414 without docs or tests.
by Armin Ronacher
· 13 years ago
cff9237
check after comments, too (#13832)
by Benjamin Peterson
· 14 years ago
188bee5
don't leak node
by Benjamin Peterson
· 14 years ago
79c1f96
only check this when parsing python
by Benjamin Peterson
· 14 years ago
fa21bf0
Issue #12705: Raise SyntaxError when compiling multiple statements as single interactive statement
by Meador Inge
· 14 years ago
8d5a62d
murder tabs
by Benjamin Peterson
· 14 years ago
527c622
make YieldFrom its own distinct from Yield (closes #13780)
by Benjamin Peterson
· 14 years ago
1f7ce62
Implement PEP 380 - 'yield from' (closes #11682)
by Nick Coghlan
· 14 years ago
3a5d4cb
Issue #13748: Raw bytes literals can now be written with the `rb` prefix as well as `br`.
by Antoine Pitrou
· 14 years ago
f51d36a
evidently some buildbots don't have python 3 installed
by Benjamin Peterson
· 14 years ago
3ab8588
run AST toolchain on python3
by Benjamin Peterson
· 14 years ago
ab0e9f7
Issue #10350: Read and save errno before calling a function which might overwrite it.
by Antoine Pitrou
· 14 years ago
c345ce1
Issue #10350: Read and save errno before calling a function which might overwrite it.
by Antoine Pitrou
· 14 years ago
942d5ba
Merge branch 3.2
by Amaury Forgeot d'Arc
· 14 years ago
58e8761
Issue #13436: Fix a bogus error message when an AST object was passed
by Amaury Forgeot d'Arc
· 14 years ago
f364e7b
Fix memory leak with FLUFL-related syntax errors (!)
by Antoine Pitrou
· 14 years ago
Next »