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>
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
Include
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-36030: Remove _PyStack_AsTuple() and _PyStack_AsTupleSlice() (GH-12032)
Sergey Fedoseev
2019-02-25
1
-10
/
+0
*
Post v3.8.0a2
Łukasz Langa
2019-02-25
1
-1
/
+1
*
Merge tag 'v3.8.0a2'
Łukasz Langa
2019-02-25
1
-2
/
+2
|
\
|
*
v3.8.0a2
v3.8.0a2
Łukasz Langa
2019-02-25
1
-2
/
+2
*
|
bpo-36030: Add _PyTuple_FromArray() function (GH-11954)
Sergey Fedoseev
2019-02-25
1
-0
/
+1
*
|
bpo-35459: Use PyDict_GetItemWithError() instead of PyDict_GetItem(). (GH-11112)
Serhiy Storchaka
2019-02-25
1
-0
/
+1
*
|
bpo-36048: Use __index__() instead of __int__() for implicit conversion if av...
Serhiy Storchaka
2019-02-25
1
-1
/
+11
|
/
*
bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (GH-11...
Eric Snow
2019-02-24
3
-6
/
+21
*
bpo-35724: Explicitly require the main interpreter for signal-handling. (GH-1...
Eric Snow
2019-02-23
1
-0
/
+1
*
bpo-35886: Make PyInterpreterState an opaque type in the public API. (GH-11731)
Eric Snow
2019-02-23
3
-98
/
+102
*
bpo-1054041: Exit properly after an uncaught ^C. (#11862)
Gregory P. Smith
2019-02-16
1
-0
/
+4
*
Post 3.8.0a1
Łukasz Langa
2019-02-04
1
-1
/
+1
*
v3.8.0a1
v3.8.0a1
Łukasz Langa
2019-02-03
1
-2
/
+2
*
bpo-35766: Merge typed_ast back into CPython (GH-11645)
Guido van Rossum
2019-01-31
5
-34
/
+76
*
bpo-35224: PEP 572 Implementation (#10497)
Emily Morehouse
2019-01-24
5
-50
/
+63
*
bpo-35713: Reorganize sys module initialization (GH-11658)
Victor Stinner
2019-01-23
1
-3
/
+6
*
bpo-35713: Split _Py_InitializeCore into subfunctions (GH-11650)
Victor Stinner
2019-01-22
1
-2
/
+3
*
bpo-35713: Rework Python initialization (GH-11647)
Victor Stinner
2019-01-22
2
-34
/
+32
*
bpo-33416: Add end positions to Python AST (GH-11605)
Ivan Levkivskyi
2019-01-22
2
-115
/
+165
*
bpo-35758: Fix building on ARM + MSVC (gh-11531)
Minmin Gong
2019-01-21
2
-2
/
+4
*
bpo-35423: Stop using the "pending calls" machinery for signals. (gh-10972)
Eric Snow
2019-01-11
1
-0
/
+2
*
bpo-35582: Argument Clinic: inline parsing code for positional parameters. (G...
Serhiy Storchaka
2019-01-11
1
-1
/
+6
*
bpo-28503: Use crypt_r() when available instead of crypt() (GH-11373)
Gregory P. Smith
2018-12-30
1
-0
/
+10
*
bpo-23867: Argument Clinic: inline parsing code for a single positional param...
Serhiy Storchaka
2018-12-25
1
-0
/
+2
*
bpo-30455: Generate all token related code and docs from Grammar/Tokens. (GH-...
Serhiy Storchaka
2018-12-22
1
-8
/
+3
*
bpo-35259: Limit `Py_FinalizeEx()` to `Py_LIMITED_API >= 0x03060000`. (GH-10620)
Arthur Neufeld
2018-12-20
1
-0
/
+2
*
bpo-35444: Unify and optimize the helper for getting a builtin object. (GH-11...
Serhiy Storchaka
2018-12-11
2
-4
/
+3
*
bpo-35134: Create Include/cpython/tupleobject.h (GH-10764)
Victor Stinner
2018-11-28
2
-33
/
+41
*
bpo-35134: Don't define types twice in header files (GH-10754)
Victor Stinner
2018-11-27
2
-29
/
+36
*
bpo-35134: Create Include/cpython/pystate.h (GH-10733)
Victor Stinner
2018-11-27
2
-281
/
+275
*
bpo-35134: Create Include/cpython/dictobject.h (GH-10732)
Victor Stinner
2018-11-27
2
-119
/
+124
*
bpo-35134: Create Include/cpython/pylifecycle.h (GH-10731)
Victor Stinner
2018-11-27
2
-97
/
+102
*
bpo-35134: Create Include/cpython/abstract.h (GH-10728)
Victor Stinner
2018-11-26
2
-281
/
+285
*
bpo-35134: Add Include/cpython/pyerrors.h (GH-10727)
Victor Stinner
2018-11-26
2
-168
/
+182
*
bpo-35134: Create Include/cpython/unicodeobject.h (GH-10680)
Victor Stinner
2018-11-26
2
-1286
/
+1251
*
bpo-35134: Create Include/cpython/object.h (GH-10679)
Victor Stinner
2018-11-26
2
-485
/
+460
*
bpo-33954: Fix _PyUnicode_InsertThousandsGrouping() (GH-10623)
Victor Stinner
2018-11-26
1
-3
/
+3
*
Add assertion to _PyTuple_CAST(op) (GH-10712)
Victor Stinner
2018-11-26
1
-2
/
+2
*
bpo-35081: Add Include/internal/pycore_tupleobject.h (GH-10705)
Victor Stinner
2018-11-25
2
-4
/
+18
*
bpo-35081: Add _PyTuple_CAST() (GH-10704)
Victor Stinner
2018-11-25
1
-4
/
+7
*
bpo-35134: Create Include/cpython/ subdirectory (GH-10624)
Victor Stinner
2018-11-23
2
-105
/
+116
*
bpo-35059: PyObject_INIT() casts to PyObject* (GH-10674)
Victor Stinner
2018-11-23
1
-2
/
+8
*
bpo-34523: Fix C locale coercion on FreeBSD CURRENT (GH-10672)
Victor Stinner
2018-11-23
1
-0
/
+8
*
bpo-35177, Python-ast.h: Fix "Yield" compiler warning (GH-10664)
Victor Stinner
2018-11-22
1
-1
/
+1
*
bpo-18407: ast.c uses Py_ssize_t for asdl_seq_LEN() iterator (GH-10655)
Victor Stinner
2018-11-22
1
-1
/
+1
*
bpo-35059: Add _PyObject_CAST() macro (GH-10645)
Victor Stinner
2018-11-22
5
-23
/
+29
*
bpo-35059: Convert _PyObject_GC_TRACK() to inline function (GH-10643)
Victor Stinner
2018-11-22
2
-36
/
+61
*
bpo-35059: Enhance _PyObject_AssertFailed() (GH-10642)
Victor Stinner
2018-11-21
1
-3
/
+5
*
bpo-35081: Add Include/internal/pycore_object.h (GH-10640)
Victor Stinner
2018-11-21
2
-45
/
+56
*
bpo-35081: Move _PyGC_FINALIZED() back to C API (GH-10626)
Victor Stinner
2018-11-21
1
-3
/
+3
[next]