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
/
Lib
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-39424: Use assertRaisesRegex instead of assertRaisesRegexp. (GH-18277)
damani42
2020-01-30
1
-1/+1
*
bpo-39353: binascii.crc_hqx() is no longer deprecated (GH-18276)
Victor Stinner
2020-01-30
2
-7/+2
*
bpo-39493: Fix definition of IO.closed in typing.py (#18265)
Shantanu
2020-01-30
1
-0/+1
*
Get mock coverage back to 100% (GH-18228)
Chris Withers
2020-01-29
4
-54/+35
*
bpo-39485: fix corner-case in method-detection of mock (GH-18252)
Carl Friedrich Bolz-Tereick
2020-01-29
1
-5/+1
*
bpo-39460: Fix test_zipfile.test_add_file_after_2107() (GH-18247)
Victor Stinner
2020-01-29
1
-0/+12
*
bpo-36051: Drop GIL during large bytes.join() (GH-17757)
Bruce Merry
2020-01-29
1
-2/+6
*
bpo-36350: inspect: Replace OrderedDict with dict. (GH-12412)
Rémi Lapeyre
2020-01-28
2
-21/+23
*
bpo-39439: Fix multiprocessing spawn path in a venv on Windows (GH-18158)
Adam Meily
2020-01-28
1
-1/+1
*
bpo-38883: Don't use POSIX `$HOME` in `pathlib.Path.home/expanduser` on Windo...
Christoph Reiter
2020-01-28
2
-11/+15
*
bpo-39205: Tests that highlight a hang on ProcessPoolExecutor shutdown (#18221)
Brian Quinlan
2020-01-28
1
-0/+20
*
bpo-30780: Add IDLE configdialog tests (#3592)
Cheryl Sabella
2020-01-27
3
-31/+148
*
bpo-39459: test.pythoninfo logs effective uid/gid (GH-18203)
Victor Stinner
2020-01-27
1
-9/+14
*
bpo-39453: Add testcase for bpo-39453 (GH-18202)
Dong-hee Na
2020-01-27
1
-0/+2
*
bpo-39453: Make list.__contains__ hold strong references to avoid crashes (GH...
Dong-hee Na
2020-01-27
1
-0/+5
*
Clarify and fix assertions that mocks have not been awaited (GH-18196)
Chris Withers
2020-01-27
2
-27/+30
*
Use relative imports in mock and its tests to help backporting (GH-18197)
Chris Withers
2020-01-27
3
-79/+82
*
Fix so that test.test_distutils can be executed by unittest and not just regr...
Toshio Kuratomi
2020-01-27
1
-0/+6
*
bpo-39320: Handle unpacking of **values in compiler (GH-18141)
Mark Shannon
2020-01-27
2
-4/+4
*
bpo-25597: Ensure wraps' return value is used for magic methods in MagicMock ...
Karthikeyan Singaravelan
2020-01-27
2
-0/+53
*
Fix linecache.py add lazycache to __all__ and use dict.clear to clear the cac...
加和
2020-01-26
1
-18/+18
*
bpo-38932: Mock fully resets child objects on reset_mock(). (GH-17409)
Vegard Stikbakke
2020-01-25
2
-2/+14
*
Merge tag 'v3.9.0a3'
Łukasz Langa
2020-01-25
1
-52/+115
|
\
|
*
Python 3.9.0a3
v3.9.0a3
Łukasz Langa
2020-01-24
1
-52/+115
*
|
bpo-37955: correct mock.patch docs with respect to the returned type (GH-15521)
Paulo Henrique Silva
2020-01-25
1
-1/+2
*
|
bpo-39082: Allow AsyncMock to correctly patch static/class methods (GH-18116)
Matthew Kokotovich
2020-01-25
2
-0/+25
*
|
bpo-39388: IDLE: Fix bug when cancelling out of configdialog (GH-18068)
Cheryl Sabella
2020-01-25
3
-8/+18
|
/
*
bpo-39430: Fix race condition in lazy imports in tarfile. (GH-18161)
Serhiy Storchaka
2020-01-24
1
-10/+8
*
bpo-39390 shutil: fix argument types for ignore callback (GH-18122)
mbarkhau
2020-01-24
2
-1/+43
*
bpo-38473: Handle autospecced functions and methods used with attach_mock (GH...
Karthikeyan Singaravelan
2020-01-24
2
-0/+33
*
bpo-39395: putenv() and unsetenv() always available (GH-18135)
Victor Stinner
2020-01-24
3
-31/+6
*
bpo-39413: Implement os.unsetenv() on Windows (GH-18163)
Victor Stinner
2020-01-24
1
-8/+35
*
bpo-39426: Fix outdated default and highest protocols in docs (GH-18154)
Mark Dickinson
2020-01-24
1
-3/+3
*
Fix `mock.patch.dict` to be stopped with `mock.patch.stopall` (#17606)
Mario Corchero
2020-01-24
2
-2/+67
*
bpo-24928: Add test case for patch.dict using OrderedDict (GH -11437)
Emmanuel Arias
2020-01-24
1
-0/+20
*
bpo-17005: Add a class to perform topological sorting to the standard library...
Pablo Galindo
2020-01-23
2
-3/+520
*
bpo-39421: Fix posible crash in heapq with custom comparison operators (GH-18...
Pablo Galindo
2020-01-23
1
-0/+31
*
bpo-39320: Handle unpacking of *values in compiler (GH-17984)
Mark Shannon
2020-01-23
3
-7/+9
*
bpo-32989: IDLE - remove unneeded parameter (GH-18138)
Terry Jan Reedy
2020-01-23
2
-2/+3
*
bpo-39050: The Help button in IDLE's config menu works again (GH-17611)
Zackery Spytz
2020-01-23
3
-1/+14
*
bpo-29435: Allow is_tarfile to take a filelike obj (GH-18090)
William Woodruff
2020-01-23
2
-1/+38
*
bpo-39336: Allow packages to not let their child modules be set on them (#18006)
Dino Viehland
2020-01-23
4
-1/+32
*
bpo-35182: fix communicate() crash after child closes its pipes (GH-17020) (G...
Alex Rebert
2020-01-22
2
-2/+13
*
bpo-39366: Remove xpath() and xgtitle() methods of NNTP (GH-18035)
Dong-hee Na
2020-01-22
1
-39/+0
*
Revert "bpo-39413: Implement os.unsetenv() on Windows (GH-18104)" (GH-18124)
Victor Stinner
2020-01-22
1
-3/+8
*
bpo-39353: Deprecate the binhex module (GH-18025)
Victor Stinner
2020-01-22
3
-13/+62
*
bpo-39413: Implement os.unsetenv() on Windows (GH-18104)
Victor Stinner
2020-01-21
1
-8/+3
*
Move test_math tests (GH-18098)
Victor Stinner
2020-01-21
1
-148/+148
*
bpo-39389: gzip: fix compression level metadata (GH-18077)
William Chargin
2020-01-21
2
-3/+29
*
bpo-39396: Fix math.nextafter(-0.0, +0.0) on AIX 7.1 (GH-18094)
Victor Stinner
2020-01-21
1
-77/+77
[next]