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-35992: Use PySequence_GetItem only if sq_item is not NULL (GH-11857)
Ivan Levkivskyi
2019-02-17
1
-1/+8
*
bpo-36013: delete fragile interactive shell SIGINT test (GH-11902)
Gregory P. Smith
2019-02-17
1
-33/+7
*
bpo-1054041: Exit properly after an uncaught ^C. (#11862)
Gregory P. Smith
2019-02-16
1
-4/+57
*
bpo-15248: Emit a compiler warning when missed a comma before tuple or list. ...
Serhiy Storchaka
2019-02-16
1
-0/+87
*
bpo-35931: Gracefully handle SyntaxError in pdb debug command (GH-11782)
Daniel Hahler
2019-02-15
1
-0/+8
*
bpo-35994: add sub dir for sub2_tree in os.walk test if symlink is not suppor...
pxinwr
2019-02-15
1
-1/+1
*
bpo-35633: test_lockf() fails with "PermissionError: [Errno 13] Permission de...
Michael Felt
2019-02-14
1
-0/+4
*
bpo-18283: Add support for bytes to shutil.which (GH-11818)
Cheryl Sabella
2019-02-13
1
-4/+17
*
bpo-35505: Skip test_imap4_host_default_value if localhost listens on IMAP po...
Matěj Cepl
2019-02-12
1
-0/+10
*
bpo-35972: _xxsubinterpreters: Fix potential integer truncation on 32-bit in ...
Alexey Izbyshev
2019-02-12
1
-1/+13
*
bpo-35960: Fix dataclasses.field throwing away empty metadata. (GH-11815)
Christopher Hunt
2019-02-12
1
-2/+12
*
bpo-35918: Remove broken has_key method and add test (#11819)
Rémi Lapeyre
2019-02-12
1
-2/+0
*
bpo-35378: Fix multiprocessing.Pool references (GH-11627)
Pablo Galindo
2019-02-11
1
-1/+0
*
Fix division by 0 when checking for overflow in math.prod (GH-11808)
Pablo Galindo
2019-02-10
1
-0/+4
*
Make sure the BaseManager in test_multiprocessing is cleaned up correctly (GH...
Pablo Galindo
2019-02-09
1
-15/+20
*
Do not retain references to processes and managers in TestSyncManagerTypes (G...
Pablo Galindo
2019-02-09
1
-0/+2
*
Rework tuple hash tests. (GH-10161)
Tim Peters
2019-02-08
2
-84/+308
*
bpo-35615: Fix crashes when copying a Weak{Key,Value}Dictionary. (GH-11384)
Fish
2019-02-07
1
-0/+82
*
bpo-35911: add cell constructor (GH-11771)
Pierre Glaser
2019-02-07
1
-0/+9
*
bpo-24209: In http.server script, rely on getaddrinfo to bind to preferred ad...
Jason R. Coombs
2019-02-07
1
-13/+55
*
bpo-35917: Test multiprocessing manager classes and shareable types (GH-11772)
Giampaolo Rodola
2019-02-07
1
-0/+246
*
bpo-35606: Implement math.prod (GH-11359)
Pablo Galindo
2019-02-07
1
-0/+31
*
bpo-35321: Set the spec origin to frozen in frozen modules (#11732)
Nina Zakharenko
2019-02-05
1
-0/+11
*
bpo-32417: Make timedelta arithmetic respect subclasses (#10902)
Paul Ganssle
2019-02-04
1
-10/+73
*
bpo-35872 and bpo-35873: Clears __PYVENV_LAUNCHER__ variable (GH-11745)
Steve Dower
2019-02-04
1
-9/+2
*
bpo-29734: nt._getfinalpathname handle leak (GH-740)
Mark Becwar
2019-02-02
1
-0/+56
*
bpo-35845: Add order={'C', 'F', 'A'} parameter to memoryview.tobytes(). (#11730)
Stefan Krah
2019-02-02
1
-0/+15
*
bpo-1104: msilib.SummaryInfo.GetProperty() truncates the string by one charac...
Tzu-ping Chung
2019-02-02
1
-2/+25
*
bpo-35877: Add test for while loop named expression without parentheses (GH-1...
Emily Morehouse
2019-02-01
1
-1/+7
*
bpo-35877: Make parenthesis optional for named expression in while statement ...
Xtreak
2019-02-01
1
-0/+1
*
bpo-35861: Fix SyntaxWarning in test_named_expressions.py (GH-11722)
Joannah Nanjekye
2019-02-01
1
-1/+1
*
bpo-35537: Skip test_start_new_session() of posix_spawn (GH-11718)
Victor Stinner
2019-02-01
1
-0/+2
*
bpo-35537: Add setsid parameter to os.posix_spawn() and os.posix_spawnp() (GH...
Joannah Nanjekye
2019-02-01
1
-0/+16
*
bpo-35766: Merge typed_ast back into CPython (GH-11645)
Guido van Rossum
2019-01-31
3
-66/+363
*
bpo-35854: Fix EnvBuilder and --symlinks in venv on Windows (GH-11700)
Steve Dower
2019-01-30
1
-1/+0
*
Fast path for int inputs to math.dist() and math.hypot() (GH-11692)
Raymond Hettinger
2019-01-28
1
-1/+10
*
bpo-35780: Fix errors in lru_cache() C code (GH-11623)
Raymond Hettinger
2019-01-26
1
-1/+28
*
bpo-35797: Fix default executable used by the multiprocessing module (GH-11676)
Steve Dower
2019-01-25
1
-0/+13
*
bpo-35814: Allow same r.h.s. in annotated assignments as in normal ones (GH-1...
Ivan Levkivskyi
2019-01-25
2
-1/+10
*
bpo-35224: PEP 572 Implementation (#10497)
Emily Morehouse
2019-01-24
4
-5/+458
*
bpo-35717: Fix KeyError exception raised when using enums and compile (GH-11523)
Rémi Lapeyre
2019-01-24
1
-0/+9
*
bpo-35683: Improve Azure Pipelines steps (GH-11493)
Steve Dower
2019-01-22
2
-2/+7
*
bpo-33416: Add end positions to Python AST (GH-11605)
Ivan Levkivskyi
2019-01-22
3
-23/+339
*
bpo-35794: Catch PermissionError in test_no_such_executable (GH-11635)
Pablo Galindo
2019-01-21
1
-1/+3
*
bpo-35772: Fix test_tarfile on ppc64 (GH-11606)
Victor Stinner
2019-01-21
2
-2/+9
*
bpo-35733: Make isinstance(ast.Constant(boolean), ast.Num) be false. (GH-11547)
Anthony Sottile
2019-01-18
1
-0/+4
*
bpo-35045: Accept TLSv1 default in min max test (GH-11510)
Christian Heimes
2019-01-18
1
-2/+5
*
bpo-34850: Emit a warning for "is" and "is not" with a literal. (GH-9642)
Serhiy Storchaka
2019-01-18
2
-11/+36
*
bpo-33687: Fix call to os.chmod() in uu.decode() (GH-7282)
Timo Furrer
2019-01-17
1
-0/+19
*
bpo-35701: Added __weakref__ slot to uuid.UUID (GH-11570)
David H
2019-01-17
1
-0/+6
[next]