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
Commit message (
Expand
)
Author
Age
Files
Lines
*
Python 3.9.0a3
v3.9.0a3
Łukasz Langa
2020-01-24
89
-275
/
+1024
*
bpo-39430: Fix race condition in lazy imports in tarfile. (GH-18161)
Serhiy Storchaka
2020-01-24
2
-10
/
+9
*
bpo-38631: Avoid Py_FatalError() in GC collect() (GH-18164)
Victor Stinner
2020-01-24
1
-7
/
+1
*
bpo-39390 shutil: fix argument types for ignore callback (GH-18122)
mbarkhau
2020-01-24
3
-1
/
+45
*
bpo-38473: Handle autospecced functions and methods used with attach_mock (GH...
Karthikeyan Singaravelan
2020-01-24
3
-0
/
+35
*
bpo-39395: putenv() and unsetenv() always available (GH-18135)
Victor Stinner
2020-01-24
12
-154
/
+52
*
bpo-39413: Implement os.unsetenv() on Windows (GH-18163)
Victor Stinner
2020-01-24
6
-49
/
+150
*
bpo-39361: Document the removal of PyTypeObject.tp_print (GH-18125)
Ammar Askar
2020-01-24
1
-0
/
+5
*
bpo-39426: Fix outdated default and highest protocols in docs (GH-18154)
Mark Dickinson
2020-01-24
3
-19
/
+21
*
bpo-39429: Add a new "Python Development Mode" doc page (GH-18132)
Victor Stinner
2020-01-24
13
-49
/
+268
*
Fix `mock.patch.dict` to be stopped with `mock.patch.stopall` (#17606)
Mario Corchero
2020-01-24
3
-2
/
+69
*
bpo-24928: Add test case for patch.dict using OrderedDict (GH -11437)
Emmanuel Arias
2020-01-24
1
-0
/
+20
*
bpo-17005: Minor improvements to the documentation of TopologicalSorter (GH-1...
Pablo Galindo
2020-01-23
1
-75
/
+67
*
bpo-39431: Also mention nonlocal in assignment quirk (GH-17375)
Shanavas M
2020-01-23
1
-4
/
+4
*
bpo-17005: Add a class to perform topological sorting to the standard library...
Pablo Galindo
2020-01-23
6
-3
/
+738
*
bpo-39421: Fix posible crash in heapq with custom comparison operators (GH-18...
Pablo Galindo
2020-01-23
3
-9
/
+59
*
bpo-39320: Handle unpacking of *values in compiler (GH-17984)
Mark Shannon
2020-01-23
10
-2347
/
+2336
*
bpo-32989: IDLE - remove unneeded parameter (GH-18138)
Terry Jan Reedy
2020-01-22
2
-2
/
+3
*
bpo-39050: The Help button in IDLE's config menu works again (GH-17611)
Zackery Spytz
2020-01-22
4
-1
/
+15
*
bpo-29435: Allow is_tarfile to take a filelike obj (GH-18090)
William Woodruff
2020-01-22
5
-2
/
+45
*
bpo-39427: Document -X opt options in the CLI --help and the man page (GH-18131)
Pablo Galindo
2020-01-22
3
-2
/
+73
*
bpo-39336: Allow packages to not let their child modules be set on them (#18006)
Dino Viehland
2020-01-22
6
-338
/
+379
*
bpo-35182: fix communicate() crash after child closes its pipes (GH-17020) (G...
Alex Rebert
2020-01-22
3
-2
/
+16
*
bpo-39366: Remove xpath() and xgtitle() methods of NNTP (GH-18035)
Dong-hee Na
2020-01-23
4
-66
/
+9
*
bpo-39406: Implement os.putenv() with setenv() if available (GH-18128)
Victor Stinner
2020-01-22
6
-38
/
+35
*
bpo-39406: os.putenv() avoids putenv_dict on Windows (GH-18126)
Victor Stinner
2020-01-22
1
-2
/
+6
*
Revert "bpo-39413: Implement os.unsetenv() on Windows (GH-18104)" (GH-18124)
Victor Stinner
2020-01-22
6
-94
/
+12
*
bpo-39353: Deprecate the binhex module (GH-18025)
Victor Stinner
2020-01-22
9
-25
/
+120
*
bpo-39425: Fix list.count performance regression (GH-18119)
Dong-hee Na
2020-01-22
1
-0
/
+4
*
bpo-39377: json: Update doc about the encoding option. (GH-18076)
Inada Naoki
2020-01-22
2
-8
/
+11
*
closes bpo-39415: Remove unused codes from longobject.c complexobject.c float...
Dong-hee Na
2020-01-21
3
-68
/
+0
*
PyLong_AsLongLong() docs should say 'long long' (#18082)
Keith Erskine
2020-01-21
1
-1
/
+1
*
bpo-39406: Add PY_PUTENV_DICT macro to posixmodule.c (GH-18106)
Victor Stinner
2020-01-21
1
-15
/
+37
*
bpo-39413: Implement os.unsetenv() on Windows (GH-18104)
Victor Stinner
2020-01-21
6
-12
/
+92
*
Move test_math tests (GH-18098)
Victor Stinner
2020-01-21
1
-148
/
+148
*
bpo-33387: Fix compiler warning in frame_block_unwind() (GH-18099)
Victor Stinner
2020-01-21
1
-1
/
+1
*
bpo-39389: gzip: fix compression level metadata (GH-18077)
William Chargin
2020-01-21
3
-3
/
+31
*
bpo-39396: Fix math.nextafter(-0.0, +0.0) on AIX 7.1 (GH-18094)
Victor Stinner
2020-01-21
3
-79
/
+86
*
bpo-32989: IDLE - fix bad editor call of pyparse method (GH-5968)
Cheryl Sabella
2020-01-21
6
-39
/
+154
*
improve the documentation of the LOAD_METHOD and CALL_METHOD (GH-18079)
Carl Friedrich Bolz-Tereick
2020-01-21
1
-8
/
+10
*
bpo-39383: Mention Darwin as a potential value for platform.system() (GH-18054)
Peter Bittner
2020-01-20
1
-3
/
+2
*
bpo-39386: Prevent double awaiting of async iterator (GH-18081)
Andrew Svetlov
2020-01-21
3
-4
/
+49
*
Fix asyncio.get_event_loop() documentation (GH-18051)
Andrew Svetlov
2020-01-21
2
-2
/
+6
*
bpo-35134: Migrate frameobject.h contents to cpython/frameobject.h (GH-18052)
Nick Coghlan
2020-01-21
2
-74
/
+95
*
bpo-39377: json: Remove the encoding option. (GH-18075)
Inada Naoki
2020-01-20
3
-15
/
+2
*
bpo-38536: locale: Remove trailing space in formatted currency (GH-16864)
Inada Naoki
2020-01-20
3
-2
/
+5
*
bpo-35561: Supress valgrind false alarm on epoll_ctl(event) (GH-18060)
Zackery Spytz
2020-01-19
1
-0
/
+8
*
Fix typo from base to based (GH-18055)
Michael Haas
2020-01-19
1
-1
/
+1
*
bpo-39372: Clean header files of declared interfaces with no implementations ...
Pablo Galindo
2020-01-18
17
-67
/
+8
*
Run doctests in GitHub actions Docs targer (GH-18041)
Pablo Galindo
2020-01-17
1
-9
/
+9
[next]