GitWeb
Get Gentoo!
gentoo.org sites
gentoo.org
Wiki
Bugs
Forums
Packages
Planet
Archives
Sources
Infra Status
Home
Gentoo Repository
Repositories
Projects
Developer Overlays
User Overlays
Data
Websites
index
:
fork/cpython.git
3.6
3.7
3.8
3.9
backport-e35ca41-3.11
gentoo
gentoo-2.7-vanilla
main
master
Gentoo fork of Python
Python project <python@gentoo.org>
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
Python
/
Python-ast.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
closes bpo-38648: Remove double tp_free slot in Python-ast.c. (GH-17002)
Max Bernstein
2019-10-30
1
-1
/
+0
*
bpo-38425: Fix ‘res’ may be used uninitialized warning (GH-16688)
Dong-hee Na
2019-10-10
1
-1
/
+2
*
bpo-38140: Make dict and weakref offsets opaque for C heap types (#16076)
Eddie Elizondo
2019-09-19
1
-2
/
+7
*
Fix leaks in Python-ast.c (#16127)
Eddie Elizondo
2019-09-14
1
-1
/
+5
*
bpo-38113: Update the Python-ast.c generator to PEP384 (gh-15957)
Dino Viehland
2019-09-11
1
-1388
/
+2462
*
bpo-38083: Minor improvements in asdl_c.py and Python-ast.c. (GH-15824)
Serhiy Storchaka
2019-09-10
1
-131
/
+307
*
bpo-37593: Swap the positions of posonlyargs and args in the constructor of a...
Pablo Galindo
2019-07-14
1
-23
/
+23
*
bpo-37253: Remove PyAST_obj2mod_ex() function (GH-14020)
Victor Stinner
2019-06-13
1
-5
/
+0
*
bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G...
Jeroen Demeyer
2019-05-30
1
-2
/
+2
*
bpo-37050: Remove expr_text from FormattedValue ast node, use Constant node i...
Eric V. Smith
2019-05-27
1
-29
/
+6
*
bpo-36842: Implement PEP 578 (GH-12613)
Steve Dower
2019-05-23
1
-0
/
+4
*
bpo-36878: Track extra text added to 'type: ignore' in the AST (GH-13479)
Michael J. Sullivan
2019-05-22
1
-3
/
+30
*
bpo-34616: Add PyCF_ALLOW_TOP_LEVEL_AWAIT to allow top-level await (GH-13148)
Matthias Bussonnier
2019-05-21
1
-0
/
+2
*
bpo-36817: Add f-string debugging using '='. (GH-13123)
Eric V. Smith
2019-05-08
1
-6
/
+29
*
bpo-36540: PEP 570 -- Implementation (GH-12701)
Pablo Galindo
2019-04-29
1
-5
/
+45
*
bpo-36280: Add Constant.kind field (GH-12295)
Guido van Rossum
2019-03-13
1
-5
/
+27
*
bpo-35975: Support parsing earlier minor versions of Python 3 (GH-12086)
Guido van Rossum
2019-03-07
1
-0
/
+5
*
bpo-36187: Remove NamedStore. (GH-12167)
Serhiy Storchaka
2019-03-05
1
-20
/
+1
*
bpo-35766 follow-up: Kill half-support for FunctionType in PyAST_obj2mod (#11...
Guido van Rossum
2019-02-01
1
-3
/
+2
*
bpo-35766: Merge typed_ast back into CPython (GH-11645)
Guido van Rossum
2019-01-31
1
-46
/
+466
*
bpo-35224: PEP 572 Implementation (#10497)
Emily Morehouse
2019-01-24
1
-1
/
+110
*
bpo-33416: Add end positions to Python AST (GH-11605)
Ivan Levkivskyi
2019-01-22
1
-124
/
+454
*
bpo-32892: Use ast.Constant instead of specific constant AST types. (GH-9445)
Serhiy Storchaka
2018-09-27
1
-308
/
+4
*
bpo-33677: Fix signatures of tp_clear handlers for AST and deque. (GH-7196)
Serhiy Storchaka
2018-05-31
1
-1
/
+2
*
bpo-32911: Revert bpo-29463. (GH-7121) (GH-7197)
Serhiy Storchaka
2018-05-29
1
-102
/
+17
*
bpo-32571: Avoid raising unneeded AttributeError and silencing it in C code ...
Serhiy Storchaka
2018-01-25
1
-1016
/
+1174
*
bpo-31572: Get rid of _PyObject_HasAttrId() in the ASDL parser. (#3725)
Serhiy Storchaka
2017-11-11
1
-610
/
+774
*
bpo-31095: fix potential crash during GC (GH-2974)
INADA Naoki
2017-08-24
1
-0
/
+2
*
Fix a shadow-compatible-local warning (#2180)
Yuan Chao Chou
2017-08-04
1
-165
/
+165
*
bpo-29622: Make AST constructor to accept less than enough number of position...
INADA Naoki
2017-02-24
1
-19
/
+17
*
bpo-29463: Add docstring field to some AST nodes. (#46)
INADA Naoki
2017-02-22
1
-17
/
+90
*
Issue #29369: Use Py_IDENTIFIER in Python-ast.c
INADA Naoki
2017-01-25
1
-6
/
+12
*
Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever
Serhiy Storchaka
2017-01-23
1
-22
/
+11
*
Issue #24098: Fixed possible crash when AST is changed in process of
Serhiy Storchaka
2016-10-07
1
-0
/
+220
|
\
|
*
Issue #24098: Fixed possible crash when AST is changed in process of
Serhiy Storchaka
2016-10-07
1
-0
/
+216
|
*
Issue #25555: Fix parser and AST: fill lineno and col_offset of "arg" node when
Victor Stinner
2015-11-06
1
-2
/
+29
*
|
Issue #28008: Implement PEP 530 -- asynchronous comprehensions.
Yury Selivanov
2016-09-09
1
-3
/
+24
*
|
Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations.
Yury Selivanov
2016-09-08
1
-1
/
+123
*
|
Issue #26146: remove useless code
Victor Stinner
2016-01-27
1
-7
/
+0
*
|
Add ast.Constant
Victor Stinner
2016-01-26
1
-0
/
+79
*
|
Issue #25555: Fix parser and AST: fill lineno and col_offset of "arg" node when
Victor Stinner
2015-11-06
1
-2
/
+29
*
|
Issue #24965: Implement PEP 498 "Literal String Interpolation". Documentation...
Eric V. Smith
2015-09-19
1
-0
/
+165
*
|
Issue #15989: Fixed some scarcely probable integer overflows.
Serhiy Storchaka
2015-09-06
1
-1
/
+1
|
/
*
PEP 0492 -- Coroutines with async and await syntax. Issue #24017.
Yury Selivanov
2015-05-11
1
-0
/
+473
*
PEP 448: additional unpacking generalizations (closes #2292)
Benjamin Peterson
2015-05-05
1
-93
/
+12
*
PEP 465: a dedicated infix operator for matrix multiplication (closes #21176)
Benjamin Peterson
2014-04-09
1
-3
/
+21
*
merge 3.3 (#20588)
Benjamin Peterson
2014-02-10
1
-2
/
+6
|
\
|
*
don't put runtime values in array initializer for C89 compliance (closes #20588)
Benjamin Peterson
2014-02-10
1
-2
/
+6
*
|
Issue #4555: All exported C symbols are now prefixed with either "Py" or "_Py".
Antoine Pitrou
2013-10-12
1
-48
/
+48
*
|
Issue #18552: Check return value of PyArena_AddPyObject() in obj2ast_object().
Christian Heimes
2013-07-27
1
-3
/
+7
|
\
|
[next]