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
*
closes bpo-34640: Remove the TANH_PRESERVES_ZERO_SIGN configure check. (GH-9206)
Benjamin Peterson
2018-09-12
2
-4/+0
*
Revert "bpo-34595: Add %T format to PyUnicode_FromFormatV() (GH-9080)" (GH-9187)
Victor Stinner
2018-09-11
1
-4/+0
*
closes bpo-31902: Fix the col_offset attribute for ast.Async* nodes to point ...
guoci
2018-09-11
1
-4/+4
*
closes bpo-31608: Fix a crash in methods of a subclass of _collections.deque ...
Oren Milman
2018-09-11
1
-0/+15
*
bpo-34622: Extract asyncio exceptions into a separate module (GH-9141)
Andrew Svetlov
2018-09-11
4
-12/+12
*
closes bpo-32490: Fix filename duplication in subprocess exception message. (...
Zackery Spytz
2018-09-11
1
-1/+3
*
Lib/test/support: fix typo in docstring (GH-8506)
Daniel Hahler
2018-09-11
1
-2/+2
*
bpo-32270: Don't close stdin/out/err in pass_fds (GH-6242)
Gregory P. Smith
2018-09-11
1
-0/+30
*
bpo-33217: Raise TypeError for non-Enum lookups in Enums (GH-6651)
Rahul Jha
2018-09-10
1
-3/+52
*
bpo-33604: Remove deprecated HMAC default value marked for removal in 3.8 (GH...
Matthias Bussonnier
2018-09-10
1
-21/+7
*
bpo-26502: Implement FrameSummary.__len__() (GH-8632)
Berker Peksag
2018-09-10
1
-0/+5
*
bpo-34588: Fix an off-by-one error in traceback formatting. (GH-9077)
Benjamin Peterson
2018-09-10
1
-2/+59
*
bpo-30977: rework code changes according to post-merge code review (GH-9106)
Tal Einat
2018-09-10
1
-51/+129
*
Test dict values iterator pickling with pickle.HIGHEST_PROTOCOL. (GH-9052)
Sergey Fedoseev
2018-09-10
1
-1/+1
*
bpo-20104: Change the file_actions parameter of os.posix_spawn(). (GH-6725)
Serhiy Storchaka
2018-09-08
1
-29/+28
*
bpo-34246: Make sure test_smtplib always cleans resources when finished (GH-9...
Pablo Galindo
2018-09-07
1
-7/+47
*
bpo-34246: Use no mutable default args in smtplib (GH-8554)
Pablo Aguiar
2018-09-07
1
-0/+28
*
bpo-34595: Add %T format to PyUnicode_FromFormatV() (GH-9080)
Victor Stinner
2018-09-07
1
-0/+4
*
bpo-20104: Add flag capabilities to posix_spawn (GH-6693)
Pablo Galindo
2018-09-07
1
-0/+143
*
bpo-34605: Avoid master/slave terms (GH-9101)
Victor Stinner
2018-09-07
1
-1/+1
*
bpo-34605, libregrtest: Rename --slaveargs to --worker-args (GH-9099)
Victor Stinner
2018-09-07
4
-15/+15
*
closes bpo-34594: Don't hardcode errno values in the tests. (GH-9076)
Zackery Spytz
2018-09-06
2
-3/+3
*
bpo-30977: make uuid.UUID use __slots__ (GH-9078)
Tal Einat
2018-09-06
1
-0/+60
*
bpo-26544: Add test for platform._comparable_version(). (GH-8973)
Serhiy Storchaka
2018-09-04
1
-0/+36
*
bpo-33613, test_semaphore_tracker_sigint: fix race condition (#7850)
Pablo Galindo
2018-09-04
1
-6/+21
*
bpo-33083 - Make math.factorial reject arguments that are not int-like (GH-6149)
Pablo Galindo
2018-09-03
1
-0/+5
*
bpo-26901: Fix the Argument Clinic test suite (GH-8879)
Victor Stinner
2018-09-03
1
-0/+802
*
bpo-34567: pythoninfo gets coreconfig (GH-9043)
Victor Stinner
2018-09-03
1
-0/+12
*
bpo-34007: Skip traceback tests if the Program Counter is not available. (GH-...
Pablo Galindo
2018-08-31
1
-0/+9
*
bpo-34097: Polish API design (GH-8725)
Marcel Plch
2018-08-31
1
-4/+4
*
bpo-34427: Fix infinite loop when calling MutableSequence.extend() on self (G...
Naris R
2018-08-30
1
-0/+12
*
bpo-34542: Update test certs and keys (GH-8997)
Christian Heimes
2018-08-30
19
-726/+980
*
Fix TestPosixSpawn.test_close_file() (GH-8992)
Victor Stinner
2018-08-29
1
-30/+34
*
bpo-34523: Support surrogatepass in locale codecs (GH-8995)
Victor Stinner
2018-08-29
1
-5/+113
*
bpo-34523: Py_DecodeLocale() use UTF-8 on Windows (GH-8998)
Victor Stinner
2018-08-29
1
-20/+19
*
bpo-34523: Add _PyCoreConfig.filesystem_encoding (GH-8963)
Victor Stinner
2018-08-29
2
-2/+49
*
bpo-34485: Add _PyCoreConfig.stdio_encoding (GH-8881)
Victor Stinner
2018-08-29
1
-3/+33
*
bpo-34485: stdout uses surrogateescape on POSIX locale (GH-8986)
Victor Stinner
2018-08-29
1
-9/+15
*
bpo-34485: Enhance init_sys_streams() (GH-8978)
Victor Stinner
2018-08-28
3
-17/+17
*
bpo-34527: POSIX locale enables the UTF-8 Mode (GH-8972)
Victor Stinner
2018-08-28
1
-6/+17
*
bpo-21145: Add cached_property decorator in functools (#6982)
Carl Meyer
2018-08-28
1
-0/+166
*
bpo-33635: Handling Bad file descriptor in Path.is_file and related. (GH-8542)
Przemysław Spodymek
2018-08-27
1
-0/+24
*
bpo-34347: Fix test_utf8_mode.test_cmd_line for AIX (GH-8923)
Michael Felt
2018-08-27
1
-0/+2
*
bpo-34171: Fix test_trace. (GH-8940)
Serhiy Storchaka
2018-08-27
1
-3/+6
*
bpo-32968: Make modulo and floor division involving Fraction and float consis...
Elias Zamaria
2018-08-27
1
-3/+7
*
Remove AIX workaround test_subprocess (GH-8939)
Michael Felt
2018-08-26
1
-8/+2
*
Fix upsizing of marks stack in pickle module. (GH-8860)
Sergey Fedoseev
2018-08-25
1
-3/+3
*
bpo-34171: Prevent creating Lib/trace.cover when run the trace module. (GH-8841)
Serhiy Storchaka
2018-08-25
1
-0/+5
*
bpo-13312: Avoid int underflow in time year. (GH-8912)
Gregory P. Smith
2018-08-25
1
-6/+5
*
bpo-6700: Fix inspect.getsourcelines for module level frames/tracebacks (GH-8...
Vladimir Matveev
2018-08-24
2
-2/+18
[next]