index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Python
/
ast.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Issue #26182: Fix ia refleak in code that raises DeprecationWarning.
Yury Selivanov
2016-11-08
1
-3/+5
*
Fixed issue #28633: segfault when concatenating bytes literal and f-string.
Eric V. Smith
2016-11-07
1
-4/+5
*
Issue 28128: Print out better error/warning messages for invalid string escap...
Eric V. Smith
2016-10-31
1
-5/+61
*
delete dead code
Benjamin Peterson
2016-09-19
1
-3/+0
*
Issue #26182: Raise DeprecationWarning for improper use of async/await keywords
Yury Selivanov
2016-09-15
1
-0/+20
*
Make an f-string error message more exact and consistent.
Eric V. Smith
2016-09-11
1
-1/+1
*
just start with an int rather than casting
Benjamin Peterson
2016-09-10
1
-2/+2
*
Issue 27948: Allow backslashes in the literal string portion of f-strings, bu...
Eric V. Smith
2016-09-10
1
-273/+211
*
Issue #26331: Implement the parsing part of PEP 515.
Brett Cannon
2016-09-09
1
-1/+26
*
Issue #28008: Implement PEP 530 -- asynchronous comprehensions.
Yury Selivanov
2016-09-09
1
-11/+24
*
Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations.
Yury Selivanov
2016-09-09
1
-2/+84
*
replace PY_SIZE_MAX with SIZE_MAX
Benjamin Peterson
2016-09-07
1
-1/+1
*
Closes issue 27921: Disallow backslashes anywhere in f-strings. This is a tem...
Eric V. Smith
2016-09-03
1
-0/+10
*
Merge spelling and grammar fixes from 3.5
Martin Panter
2016-08-05
1
-1/+1
|
\
|
*
Fix spelling and grammar in documentation and code comments
Martin Panter
2016-08-04
1
-1/+1
*
|
Issue #27352: Correct the validation of the ImportFrom AST node and simplify
Serhiy Storchaka
2016-06-27
1
-2/+2
*
|
Issue #23275: Allow () = iterable assignment syntax
Berker Peksag
2016-05-18
1
-7/+2
*
|
remove unused c_encoding struct member
Benjamin Peterson
2016-02-26
1
-17/+4
*
|
rewrite parsestr() so it's comprehensible; remove dead code
Benjamin Peterson
2016-02-26
1
-24/+12
*
|
c_encoding can never be NULL, which allows some code simplification
Benjamin Peterson
2016-02-26
1
-47/+43
*
|
Issue #26146: enhance ast.Constant error message
Victor Stinner
2016-01-26
1
-1/+3
*
|
Fix a refleak in validate_constant()
Victor Stinner
2016-01-26
1
-0/+2
*
|
Add ast.Constant
Victor Stinner
2016-01-25
1
-0/+50
*
|
Fix two instances of wrong indentation.
Georg Brandl
2016-01-18
1
-2/+2
*
|
Issue #20440: More use of Py_SETREF.
Serhiy Storchaka
2015-12-27
1
-7/+3
|
\
\
|
|
/
|
*
Issue #25555: Fix parser and AST: fill lineno and col_offset of "arg" node when
Victor Stinner
2015-11-06
1
-6/+3
*
|
Issue #25923: Added the const qualifier to static constant arrays.
Serhiy Storchaka
2015-12-25
1
-2/+2
*
|
Issue #25555: Fix parser and AST: fill lineno and col_offset of "arg" node when
Victor Stinner
2015-11-06
1
-6/+3
*
|
One more typo in a comment
Martin Panter
2015-10-07
1
-1/+1
*
|
merge 3.5 (#25131)
Benjamin Peterson
2015-09-26
1
-4/+10
|
\
\
|
|
/
|
*
make opening brace of container literals and comprehensions correspond to the...
Benjamin Peterson
2015-09-26
1
-4/+10
*
|
Fixed error creation if the problem is an empty expression in an f-string: us...
Eric V. Smith
2015-09-24
1
-6/+5
*
|
Move f-string compilation of the expression earlier, before the conversion ch...
Eric V. Smith
2015-09-23
1
-15/+51
*
|
Issue #24779: Remove unused rawmode parameter to unicode_decode.
Eric V. Smith
2015-09-21
1
-6/+3
*
|
Issue #24965: Implement PEP 498 "Literal String Interpolation". Documentation...
Eric V. Smith
2015-09-19
1
-56/+929
*
|
Fix ast_for_atom()
Victor Stinner
2015-09-03
1
-0/+1
*
|
Merge 3.5 (issue #24975)
Yury Selivanov
2015-09-02
1
-2/+4
|
\
\
|
|
/
|
*
Issue #24975: Fix AST compilation for PEP 448 syntax.
Yury Selivanov
2015-09-01
1
-2/+4
*
|
Fix a trivial typo.
Eric V. Smith
2015-08-21
1
-1/+1
*
|
Issue #9232: Support trailing commas in function declarations.
Robert Collins
2015-08-11
1
-9/+14
|
/
*
Issue #24791: Fix grammar regression for call syntax: 'g(*a or b)'.
Yury Selivanov
2015-08-05
1
-33/+32
*
PEP 0492 -- Coroutines with async and await syntax. Issue #24017.
Yury Selivanov
2015-05-12
1
-21/+153
*
PEP 448: additional unpacking generalizations (closes #2292)
Benjamin Peterson
2015-05-06
1
-114/+222
*
Initialize variables to prevent GCC warnings
Victor Stinner
2015-03-18
1
-2/+4
*
merge 3.4 (#21295)
Benjamin Peterson
2015-02-02
1
-22/+13
|
\
|
*
revert lineno and col_offset changes from #16795 (closes #21295)
Benjamin Peterson
2015-02-02
1
-22/+13
|
*
set line and column numbers for keyword-only arg nodes (closes #20619)
Benjamin Peterson
2014-02-14
1
-0/+2
*
|
PEP 465: a dedicated infix operator for matrix multiplication (closes #21176)
Benjamin Peterson
2014-04-10
1
-2/+6
*
|
set line and column numbers for keyword-only arg nodes (closes #20619)
Benjamin Peterson
2014-02-14
1
-0/+2
|
/
*
Issue #1772673: The type of `char*` arguments now changed to `const char*`.
Serhiy Storchaka
2013-10-19
1
-8/+6
[next]