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
/
Misc
/
NEWS.d
/
next
/
Core and Builtins
Commit message (
Expand
)
Author
Age
Files
Lines
*
Python 3.9.0a3
v3.9.0a3
Łukasz Langa
2020-01-24
22
-67
/
+0
*
bpo-17005: Add a class to perform topological sorting to the standard library...
Pablo Galindo
2020-01-23
1
-0
/
+3
*
bpo-39421: Fix posible crash in heapq with custom comparison operators (GH-18...
Pablo Galindo
2020-01-23
1
-0
/
+2
*
bpo-39320: Handle unpacking of *values in compiler (GH-17984)
Mark Shannon
2020-01-23
1
-0
/
+15
*
bpo-39427: Document -X opt options in the CLI --help and the man page (GH-18131)
Pablo Galindo
2020-01-22
1
-0
/
+2
*
bpo-39336: Allow packages to not let their child modules be set on them (#18006)
Dino Viehland
2020-01-22
1
-0
/
+1
*
bpo-39386: Prevent double awaiting of async iterator (GH-18081)
Andrew Svetlov
2020-01-21
1
-0
/
+1
*
bpo-1635741: Port _json extension module to multiphase initialization (PEP 48...
Hai Shi
2020-01-15
1
-0
/
+1
*
bpo-39322: Add gc.is_finalized to check if an object has been finalised by th...
Pablo Galindo
2020-01-14
1
-0
/
+2
*
bpo-39048: Look up __aenter__ before __aexit__ in async with (GH-17609)
Géry Ogam
2020-01-14
1
-0
/
+4
*
bpo-39156: Break up COMPARE_OP into four logically distinct opcodes. (GH-17754)
Mark Shannon
2020-01-14
1
-0
/
+9
*
bpo-32021: Support brotli .br encoding in mimetypes (#12200)
Philip McMahon
2020-01-12
1
-0
/
+1
*
bpo-39200: Correct the error message for min/max builtin function (GH-17814)
Dong-hee Na
2020-01-10
1
-0
/
+2
*
bpo-39166: Fix trace of last iteration of async for loops (#17800)
Pablo Galindo
2020-01-10
1
-0
/
+2
*
bpo-39235: Fix end location for genexp in call args (GH-17925)
Guido van Rossum
2020-01-09
1
-0
/
+2
*
bpo-39209: Manage correctly multi-line tokens in interactive mode (GH-17860)
Pablo Galindo
2020-01-06
1
-0
/
+2
*
bpo-39200: Correct the error message for range() empty constructor (GH-17813)
Pablo Galindo
2020-01-05
1
-0
/
+2
*
Fix constant folding optimization for positional only arguments (GH-17837)
Anthony Sottile
2020-01-05
1
-0
/
+2
*
Fix SystemError when nested function has annotation on positional-only argume...
Anthony Sottile
2020-01-05
1
-0
/
+2
*
bpo-39114: Fix tracing of except handlers with name binding (GH-17769)
Pablo Galindo
2020-01-02
1
-0
/
+2
*
bpo-13601: always use line-buffering for sys.stderr (GH-17646)
Jendrik Seipp
2020-01-01
1
-0
/
+6
*
bpo-38588: Fix possible crashes in dict and list when calling PyObject_RichCo...
Dong-hee Na
2019-12-31
1
-0
/
+2
*
bpo-38610: Fix possible crashes in several list methods (GH-17022)
Zackery Spytz
2019-12-30
1
-0
/
+2
*
Python 3.9.0a2
v3.9.0a2
Łukasz Langa
2019-12-18
20
-43
/
+0
*
bpo-39028: Performance enhancement in keyword extraction (GH-17576)
Sebastian Berg
2019-12-18
1
-0
/
+1
*
bpo-39080: Starred Expression's column offset fix when inside a CALL (GH-17645)
Lysandros Nikolaou
2019-12-18
1
-0
/
+1
*
bpo-38858: Small integer per interpreter (GH-17315)
Victor Stinner
2019-12-17
1
-0
/
+5
*
bpo-38629: implement __floor__ and __ceil__ for float type (GH-16985)
Batuhan Taşkaya
2019-12-15
1
-0
/
+1
*
bpo-38021: Modify AIX platform_tag so it covers PEP 425 needs (GH-17303)
Michael Felt
2019-12-16
1
-0
/
+4
*
bpo-39031: Include elif keyword when producing lineno/col-offset info for if_...
Lysandros Nikolaou
2019-12-12
1
-0
/
+2
*
bpo-39008: Require Py_ssize_t for PySys_Audit formats rather than raise a dep...
Steve Dower
2019-12-09
1
-0
/
+3
*
bpo-20443: No longer make sys.argv[0] absolute for script (GH-17534)
Victor Stinner
2019-12-09
1
-0
/
+3
*
bpo-38673: dont switch to ps2 if the line starts with comment or whitespace (...
Batuhan Taşkaya
2019-12-08
1
-0
/
+1
*
bpo-38852: Set thread stack size to 8 Mb for debug builds on android platform...
xdegaye
2019-12-08
1
-0
/
+1
*
bpo-38920: Add audit hooks for when sys.excepthook and sys.unraisable hooks a...
Steve Dower
2019-11-28
1
-0
/
+2
*
bpo-38922: Raise code.__new__ audit event when code object replace() is calle...
Steve Dower
2019-11-26
1
-0
/
+2
*
bpo-38892: Improve docs for audit event (GH-17361)
Terry Jan Reedy
2019-11-26
1
-0
/
+1
*
bpo-27145: small_ints[x] could be returned in long_add and long_sub (GH-15716)
HongWeipeng
2019-11-26
1
-0
/
+1
*
bpo-38328: Speed up the creation time of constant list and set display. (GH-1...
Brandt Bucher
2019-11-26
1
-0
/
+2
*
Produce cleaner bytecode for 'with' and 'async with' by generating separate c...
Mark Shannon
2019-11-21
1
-0
/
+5
*
bpo-36854: Move _PyRuntimeState.gc to PyInterpreterState (GH-17287)
Victor Stinner
2019-11-20
1
-0
/
+3
*
bpo-38835: Don't use PyFPE_START_PROTECT and PyFPE_END_PROTECT (GH-17231)
Victor Stinner
2019-11-20
1
-0
/
+2
*
Merge tag 'v3.9.0a1'
Łukasz Langa
2019-11-20
90
-193
/
+0
|
\
|
*
Python 3.9.0a1
v3.9.0a1
Łukasz Langa
2019-11-19
90
-193
/
+0
*
|
bpo-38707: Fix for multiprocessing.Process MainThread.native_id (GH-17088)
Jake Tesler
2019-11-19
1
-0
/
+1
*
|
bpo-35409: Ignore GeneratorExit in async_gen_athrow_throw (GH-14755)
Vincent Michel
2019-11-19
1
-0
/
+2
|
/
*
bpo-38631: Avoid Py_FatalError() in float.__getformat__() (GH-17232)
Victor Stinner
2019-11-18
1
-0
/
+2
*
bpo-38639: Optimize floor(), ceil() and trunc() for floats. (GH-16991)
Serhiy Storchaka
2019-11-16
1
-0
/
+2
*
bpo-38613: Optimize set operations of dict keys. (GH-16961)
Inada Naoki
2019-11-08
1
-0
/
+3
*
bpo-38640: Allow break and continue in always false while loops (GH-16992)
Pablo Galindo
2019-10-30
1
-0
/
+3
[next]