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
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-45216: Remove extraneous method docs from `difflib` (GH-28445)
Nikita Sobolev
2021-09-21
2
-40/+2
*
bpo-45061: Detect refcount bug on empty tuple singleton (GH-28503)
Victor Stinner
2021-09-21
6
-5/+41
*
bpo-45209: fix `UserWarning: resource_tracker` in test_multiprocessing (GH-28...
Nikita Sobolev
2021-09-21
2
-0/+9
*
bpo-24076: Fix reference in sum() introduced by GH-28469 (GH-28493)
Pablo Galindo Salgado
2021-09-21
1
-1/+2
*
bpo-45246: Document that sorted() only uses "<" comparisons (GH-28494)
Raymond Hettinger
2021-09-21
1
-0/+9
*
bpo-45200: Ignore test_multiprocessing_* in ASAN build due to false positives...
Pablo Galindo Salgado
2021-09-21
1
-1/+1
*
bpo-44958: Fix ref. leak introduced in GH-27844 (GH-28490)
Erlend Egeberg Aasland
2021-09-21
2
-30/+36
*
bpo-44958: Only reset `sqlite3` statements when needed (GH-27844)
Erlend Egeberg Aasland
2021-09-21
4
-46/+82
*
bpo-24076: Inline single digit unpacking in the integer fastpath of sum() (GH...
scoder
2021-09-21
2
-1/+10
*
bpo-45021: Fix a hang in forked children (GH-28007)
nullptr
2021-09-20
3
-0/+21
*
bpo-45155: Apply new byteorder default values for int.to/from_bytes (GH-28465)
Raymond Hettinger
2021-09-20
5
-15/+15
*
bpo-44848: Update Windows installer to use SQLite 3.36.0 (GH-27622)
Erlend Egeberg Aasland
2021-09-20
4
-3/+4
*
bpo-45229: Make pickle tests discoverable (GH-28467)
Serhiy Storchaka
2021-09-20
3
-47/+36
*
bpo-1514420: Do not attempt to open files with names in <>s when formatting a...
Irit Katriel
2021-09-20
2
-0/+10
*
bpo-40497: Fix handling of check in subprocess.check_output() (GH-19897)
RĂ©mi Lapeyre
2021-09-20
3
-2/+15
*
bpo-45055: Add retry when downloading externals on Windows (GH-28399)
Steve Dower
2021-09-20
1
-1/+18
*
bpo-45229: Use doctest.DocTestSuite instead of run_doctest (GH-28468)
Serhiy Storchaka
2021-09-20
17
-188/+122
*
bpo-40413: test_embed tests calling Py_RunMain() multiple times (GH-28466)
Victor Stinner
2021-09-20
2
-4/+24
*
Docs: Clarify the before_and_after() example (GH-28458)
Raymond Hettinger
2021-09-20
2
-6/+8
*
bpo-45041: Simplify `sqlite3.Cursor.executescript()` (GH-28020)
Erlend Egeberg Aasland
2021-09-19
1
-42/+25
*
bpo-45040: Simplify sqlite3 transaction control functions (GH-28019)
Erlend Egeberg Aasland
2021-09-19
2
-63/+28
*
bpo-45128: fixes `test_multiprocessing_fork` mysterious crash (GH-28387)
Nikita Sobolev
2021-09-19
2
-3/+6
*
bpo-30637: Improve the docs of ast.parse regarding differences with compile()...
Pablo Galindo Salgado
2021-09-19
1
-0/+13
*
Clean up initialization __class_getitem__ with Py_GenericAlias. (GH-28450)
Serhiy Storchaka
2021-09-19
17
-21/+21
*
bpo-45229: Fix setUpModule in test_ssl (GH-28454)
Serhiy Storchaka
2021-09-19
1
-2/+0
*
bpo-45229: Remove test_main in many tests (GH-28405)
Serhiy Storchaka
2021-09-19
61
-485/+209
*
bpo-30856: Update TestResult early, without buffering in _Outcome (GH-28180)
Serhiy Storchaka
2021-09-19
7
-65/+76
*
bpo-36674: Honour the skipping decorators in TestCase.debug() (GH-28446)
Serhiy Storchaka
2021-09-18
3
-1/+77
*
bpo-45198: __set_name__ documentation not clear about its usage with non-desc...
Raymond Hettinger
2021-09-18
2
-30/+36
*
bpo-45235: Fix argparse overrides namespace with subparser defaults (GH-28420)
Adam Schwalm
2021-09-18
3
-6/+15
*
Fix minor typo in Doc/c-api/type.rst (GH-28432)
Konstantin Popov
2021-09-18
1
-1/+1
*
bpo-45183: don't raise an exception when calling zipimport.zipimporter.find_s...
Brett Cannon
2021-09-17
3
-2/+6
*
bpo-44640: Improve punctuation consistency in isinstance/issubclass error mes...
wyz23x2
2021-09-17
1
-2/+2
*
[doc] Clarify exception in `multiprocessing.cpu_count` (GH-23660)
Emmanuel Arias
2021-09-17
1
-1/+2
*
bpo-45020: Freeze os, site, and codecs. (gh-28398)
Eric Snow
2021-09-17
9
-31/+79
*
Fix missing space with help for `-m compileall -o` (GH-27591)
Daniel Hahler
2021-09-17
1
-3/+3
*
bpo-42038: fix description of returned list of lines (GH-27529)
andrei kulakov
2021-09-17
1
-6/+6
*
[doc] Add a missing apostrophe in a code example in venv.rst (GH-28391)
Arkaprabha Chakraborty
2021-09-17
1
-1/+1
*
bpo-45116: Py_DEBUG ignores Py_ALWAYS_INLINE (GH-28419)
Victor Stinner
2021-09-17
2
-1/+13
*
bpo-45187: Fix dangling threads in test_socket.CreateServerFunctionalTest (GH...
Serhiy Storchaka
2021-09-17
1
-9/+3
*
bpo-45020: Fix build out of source tree (GH-28410)
Victor Stinner
2021-09-17
2
-17/+23
*
bpo-45231: update_file.py preserves end of line (GH-28411)
Victor Stinner
2021-09-17
1
-1/+13
*
Remove compatibility check for Python versions below 2.2. (GH-28314)
Omer Katz
2021-09-17
1
-5/+4
*
bpo-45212: Add a comment for time.sleep() in tests (GH-28414)
Serhiy Storchaka
2021-09-17
1
-0/+1
*
bpo-45116: Add the Py_ALWAYS_INLINE macro (GH-28390)
Victor Stinner
2021-09-17
3
-0/+44
*
bpo-45219: Factor dictkey indexing (GH-28389)
Mark Shannon
2021-09-17
3
-63/+106
*
bpo-45217: adds note that `allow_no_value` in `configparser` is optional (GH-...
Nikita Sobolev
2021-09-17
1
-1/+2
*
bpo-45107: Make LOAD_METHOD_CLASS safer and faster, clean up comments (GH-28177)
Ken Jin
2021-09-17
2
-15/+9
*
bpo-45162: Remove many old deprecated unittest features (GH-28268)
Serhiy Storchaka
2021-09-17
14
-373/+61
*
bpo-45187: Collect test_socket tests using unittest (GH-28317)
Serhiy Storchaka
2021-09-17
1
-79/+5
[next]