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
*
bpo-33691: Add _PyAST_GetDocString(). (GH-7236)
Serhiy Storchaka
2018-05-30
1
-0/+20
*
bpo-32911: Revert bpo-29463. (GH-7121) (GH-7197)
Serhiy Storchaka
2018-05-29
1
-63/+24
*
fix error message in ast.c (#6776)
Jelle Zijlstra
2018-05-13
1
-1/+1
*
bpo-30465: Fix C downcast warning on Windows in ast.c (#6593)
Victor Stinner
2018-04-30
1
-1/+1
*
Don't hide unexpected errors in PyErr_WarnExplicitObject(). (#4585)
Serhiy Storchaka
2017-12-01
1
-9/+10
*
bpo-32023: Disallow genexprs without parenthesis in class definitions. (#4400)
Serhiy Storchaka
2017-11-15
1
-5/+10
*
bpo-32012: Disallow trailing comma after genexpr without parenthesis. (#4382)
Serhiy Storchaka
2017-11-15
1
-10/+9
*
Fix miscellaneous typos (#4275)
luzpaz
2017-11-05
1
-1/+1
*
bpo-31825: Fixed OverflowError in the 'unicode-escape' codec (#4058)
Serhiy Storchaka
2017-10-20
1
-1/+1
*
bpo-30406: Make async and await proper keywords (#1669)
Jelle Zijlstra
2017-10-06
1
-40/+35
*
bpo-31592: Fix an assertion failure in Python parser in case of a bad unicode...
Oren Milman
2017-09-30
1
-12/+16
*
bpo-31338 (#3374)
Barry Warsaw
2017-09-15
1
-4/+2
*
bpo-30465: Fix lineno and col_offset in fstring AST nodes (#1800)
Ćukasz Langa
2017-09-07
1
-5/+67
*
bpo-30923: Silence fall-through warnings included in -Wextra since gcc-7.0. (...
Stefan Krah
2017-08-21
1
-0/+3
*
bpo-30682: Removed a too-strict assertion that failed for certain f-strings. ...
ericvsmith
2017-06-16
1
-2/+2
*
bpo-30529: Fix errors for invalid whitespaces in f-string subexpressions. (#1...
Serhiy Storchaka
2017-06-08
1
-24/+7
*
bpo-29104: Fixed parsing backslashes in f-strings. (#490)
Serhiy Storchaka
2017-05-25
1
-21/+32
*
bpo-29865: Use PyXXX_GET_SIZE macros rather than Py_SIZE for concrete types. ...
Serhiy Storchaka
2017-03-21
1
-1/+1
*
bpo-29463: Add docstring field to some AST nodes. (#46)
INADA Naoki
2017-02-22
1
-26/+63
*
Issue #18896: Python function can now have more than 255 parameters.
Serhiy Storchaka
2016-12-16
1
-5/+0
*
Issue #28739: f-string expressions no longer accepted as docstrings and
Serhiy Storchaka
2016-12-11
1
-6/+5
|
\
|
*
Issue #28739: f-string expressions no longer accepted as docstrings and
Serhiy Storchaka
2016-12-11
1
-6/+5
*
|
Issue #12844: More than 255 arguments can now be passed to a function.
Serhiy Storchaka
2016-11-28
1
-5/+0
|
/
*
Issue #28715: Added error checks for PyUnicode_AsUTF8().
Serhiy Storchaka
2016-11-20
1
-3/+5
|
\
|
*
Issue #28715: Added error checks for PyUnicode_AsUTF8().
Serhiy Storchaka
2016-11-20
1
-3/+5
*
|
Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualT...
Serhiy Storchaka
2016-11-16
1
-4/+4
|
\
\
|
|
/
|
*
Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualT...
Serhiy Storchaka
2016-11-16
1
-2/+2
*
|
Fix warn_invalid_escape_sequence()
Victor Stinner
2016-11-15
1
-1/+7
*
|
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
[next]