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
/
test
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-38187: Fix reference leak in test_tools (GH-16233)
Pablo Galindo
2019-09-17
1
-0/+3
*
bpo-38013: make async_generator_athrow object tolerant to throwing exceptions...
Andrew Svetlov
2019-09-17
1
-0/+22
*
bpo-37531: regrtest main process uses shorter timeout (GH-16220)
Victor Stinner
2019-09-17
1
-6/+6
*
bpo-37206: Unrepresentable default values no longer represented as None. (GH-...
Serhiy Storchaka
2019-09-14
2
-7/+7
*
bpo-37953: Fix deprecation warnings in test_typing (GH-16133)
Zackery Spytz
2019-09-14
1
-2/+2
*
bpo-38005: Fixed comparing and creating of InterpreterID and ChannelID. (GH-1...
Serhiy Storchaka
2019-09-13
1
-39/+38
*
bpo-37953: Fix ForwardRef hash and equality checks (GH-15400)
plokmijnuhby
2019-09-13
1
-0/+116
*
Fix typo in test_api.py. (GH-16119)
Benjamin Peterson
2019-09-13
1
-1/+1
*
bpo-34706: Preserve subclassing in inspect.Signature.from_callable (GH-16108)
Gregory P. Smith
2019-09-13
1
-2/+9
*
bpo-37199: Replace the early returns added in c2cda63. (GH-14535)
Zackery Spytz
2019-09-13
1
-37/+34
*
bpo-25068: urllib.request.ProxyHandler now lowercases the dict keys (GH-13489)
Zackery Spytz
2019-09-13
1
-15/+16
*
bpo-36046: Fix buildbot failures (GH-16091)
Gregory P. Smith
2019-09-13
1
-3/+17
*
bpo-38153: Normalize hashlib algorithm names (GH-16083)
Christian Heimes
2019-09-13
1
-0/+12
*
bpo-38148: Add slots to asyncio transports (GH-16077)
Andrew Svetlov
2019-09-13
1
-4/+9
*
bpo-12707: deprecate info(), geturl(), getcode() methods in favor of headers,...
Ashwin Ramaswami
2019-09-13
2
-0/+13
*
bpo-12144: Handle cookies with expires attribute in CookieJar.make_cookies (G...
Xtreak
2019-09-13
1
-0/+9
*
bpo-8538: Add support for boolean actions to argparse (GH-11478)
Rémi Lapeyre
2019-09-13
1
-11/+45
*
bpo-9216: Add usedforsecurity to hashlib constructors (GH-16044)
Christian Heimes
2019-09-13
1
-0/+9
*
bpo-36046: Add user and group parameters to subprocess (GH-11950)
Patrick McLean
2019-09-12
2
-7/+161
*
bpo-21872: fix lzma library decompresses data incompletely (GH-14048)
animalize
2019-09-12
1
-0/+163
*
bpo-36991: Fix incorrect exception escaping ZipFile.extract() (GH-13632)
Berker Peksag
2019-09-12
1
-0/+11
*
bpo-37935: Added tests for os.walk(), glob.iglob() and Path.glob() (GH-15956)
Serhiy Storchaka
2019-09-12
3
-0/+59
*
bpo-38132: Simplify _hashopenssl code (GH-16023)
Christian Heimes
2019-09-12
1
-0/+3
*
bpo-36373: Deprecate explicit loop in task and subprocess API (GH-16033)
Andrew Svetlov
2019-09-12
3
-89/+117
*
bpo-9938: Add optional keyword argument exit_on_error to argparse.ArgumentPar...
Hai Shi
2019-09-12
1
-0/+15
*
bpo-38008: Move builtin protocol whitelist to mapping instead of list (GH-15647)
Divij Rajkumar
2019-09-12
1
-0/+8
*
closes bpo-37405: Make socket.getsockname() always return a tuple for AF_CAN....
bggardner
2019-09-12
1
-1/+3
*
bpo-36876: Skip test_check_c_globals for now. (gh-16017)
Eric Snow
2019-09-12
1
-1/+3
*
Fix the ImportWarning regarding __spec__ and __package__ being None (GH-16003)
Xtreak
2019-09-12
1
-3/+4
*
closes bpo-37758: Extend unicodedata checksum tests to cover all of Unicode. ...
Greg Price
2019-09-12
1
-5/+8
*
bpo-32820: __format__ method for ipaddress (#5627)
ewosborne
2019-09-12
1
-0/+66
*
bpo-18578: Rename and document test.bytecode_helper as test.support.bytecode_...
Joannah Nanjekye
2019-09-12
3
-4/+4
*
bpo-38120: Fix DeprecationWarning in test_random for invalid type of argument...
Xtreak
2019-09-12
1
-3/+9
*
bpo-36876: Add a tool that identifies unsupported global C variables. (#15877)
Eric Snow
2019-09-11
22
-19/+4426
*
Correct typo in min version test (GH-16000)
Christian Heimes
2019-09-11
1
-1/+1
*
bpo-34001: Fix test_ssl with LibreSSL (GH-13783)
Christian Heimes
2019-09-11
1
-1/+2
*
bpo-28724: Add methods send_fds and recv_fds to the socket module (GH-12889)
Joannah Nanjekye
2019-09-11
1
-1/+44
*
bpo-36528: Remove duplicate re tests. (GH-2689)
Xtreak
2019-09-11
1
-106/+0
*
bpo-34331: Fix incorrectly pluralized abstract class error message. (GH-8670)
Daniel Andrade
2019-09-11
1
-0/+19
*
bpo-37885: venv: Don't produce unbound variable warning on deactivate (GH-15330)
Daniel Abrahamsson
2019-09-11
1
-0/+20
*
bpo-36919: make test_source_encoding.test_issue2301 implementation-independen...
Pavel Koneski
2019-09-11
1
-1/+1
*
closes bpo-37252: Fix devpoll tests. (GH-14017)
Jakub Kulík
2019-09-11
1
-3/+3
*
bpo-31163: Added return values to pathlib.Path instance's rename and replace ...
hui shang
2019-09-11
1
-4/+8
*
bpo-38107: Replace direct future and task contructor calls with factories in ...
Andrew Svetlov
2019-09-11
13
-159/+156
*
bpo-35640: Allow passing PathLike arguments to SimpleHTTPRequestHandler (GH-1...
Géry Ogam
2019-09-11
1
-23/+74
*
bpo-20504 : in cgi.py, fix bug when a multipart/form-data request has… (#10...
Pierre Quentel
2019-09-11
1
-0/+17
*
bpo-35168: Make shlex.punctuation_chars read-only (#11631)
Alex
2019-09-11
1
-0/+7
*
bpo-35066: Make trailing percent test more portable. (GH-15907)
Benjamin Peterson
2019-09-11
1
-4/+9
*
bpo-37409: fix relative import with no parent (#14956)
Ben Lewis
2019-09-11
2
-0/+9
*
bpo-38081: Fixes ntpath.realpath('NUL') (GH-15899)
Steve Dower
2019-09-11
1
-0/+4
[next]