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-20361: Remove workaround for a now fixed bug (#5283)
Victor Stinner
2018-01-23
1
-3/+0
*
bpo-32593: Run autoconf (#5282)
Victor Stinner
2018-01-23
1
-4/+0
*
bpo-32633: Fix some warnings in test_asyncio.test_tasks (#5280)
Nathaniel J. Smith
2018-01-23
1
-2/+8
*
bpo-32436: Remove a redundant assert (#5275)
Yury Selivanov
2018-01-23
1
-1/+0
*
Add myself as hamt/context (PEP 567) code owner (#5276)
Yury Selivanov
2018-01-23
1
-0/+2
*
bpo-32436: Implement PEP 567 (#5027)
Yury Selivanov
2018-01-23
41
-120/+6269
*
bpo-29240: PyUnicode_DecodeLocale() uses UTF-8 on Android (#5272)
Victor Stinner
2018-01-22
2
-4/+17
*
bpo-32593: Drop FreeBSD 9 and older support (#5232)
Victor Stinner
2018-01-22
18
-108/+23
*
bpo-31179: Make dict.copy() up to 5.5 times faster. (#3067)
Yury Selivanov
2018-01-22
3
-2/+122
*
bpo-31801: Enum: add _ignore_ as class option (#5237)
Ethan Furman
2018-01-22
4
-2/+79
*
urllib.request: Remove unused import (GH-5268)
INADA Naoki
2018-01-22
1
-1/+0
*
bpo-32591: Fix PyExc_WarnFormat call (follow-up commit) (#5263)
Yury Selivanov
2018-01-22
1
-5/+4
*
bpo-32314: Fix asyncio.run() to cancel runinng tasks on shutdown (#5262)
Yury Selivanov
2018-01-21
4
-15/+122
*
bpo-32591: Add native coroutine origin tracking (#5250)
Nathaniel J. Smith
2018-01-21
20
-100/+485
*
bpo-32503: Avoid creating too small frames in pickles. (#5127)
Serhiy Storchaka
2018-01-20
4
-51/+62
*
bpo-32602: Test ECDSA certs (#5247)
Christian Heimes
2018-01-20
21
-440/+1049
*
bpo-32598: Use autoconf to detect usable OpenSSL (#5242)
Christian Heimes
2018-01-20
9
-83/+585
*
bpo-32226: PEP 560: improve typing module (#4906)
Ivan Levkivskyi
2018-01-20
5
-1626/+757
*
bpo-32028: Fix suggestions for indented print statements (GH-4688)
Sanyam Khurana
2018-01-20
3
-5/+23
*
bpo-32596: Lazy import concurrent.futures.process and thread (GH-5241)
INADA Naoki
2018-01-20
2
-2/+37
*
bpo-25910: Link redirections in docs (#1933)
Sanyam Khurana
2018-01-20
37
-63/+61
*
bpo-32410: Make SendfileNotAvailableError exception public (#5243)
Andrew Svetlov
2018-01-19
6
-25/+42
*
bpo-32588: Move _findvs into its own module and add missing _queue module to ...
Steve Dower
2018-01-18
11
-23/+132
*
Removed unnecesssary bit inversion which doesn't improve dispersion statistic...
Raymond Hettinger
2018-01-18
1
-1/+1
*
bpo-9566: Fix size_t=>int downcast warnings (#5230)
Victor Stinner
2018-01-18
5
-14/+14
*
bpo-32576: use queue.SimpleQueue in critical places (#5216)
Antoine Pitrou
2018-01-18
3
-9/+14
*
Fix typo in thread_nt.h code comment (GH-5211)
hui shang
2018-01-17
1
-1/+1
*
Use assertCountEqual instead of assertEqual. (#5223)
Gregory P. Smith
2018-01-17
1
-3/+3
*
bpo-32226: Fix memory leak in generic_alias_dealloc() (#5212)
Victor Stinner
2018-01-17
1
-0/+1
*
pythoninfo: add time.time and datetime.datetime.now (#5214)
Victor Stinner
2018-01-17
1
-1/+13
*
bpo-32248: Fix test_importlib.test_open() (#5213)
Victor Stinner
2018-01-17
1
-2/+2
*
Fix Git attributes of test_importlib data files (#5209)
Victor Stinner
2018-01-17
1
-0/+1
*
bpo-32549: Compile OpenSSL 1.1.0 on Travis CI (#5180)
Christian Heimes
2018-01-16
4
-53/+95
*
bpo-32403: Faster date and datetime constructors (#4993)
Paul Ganssle
2018-01-16
4
-45/+171
*
bpo-32410: Implement loop.sock_sendfile() (#4976)
Andrew Svetlov
2018-01-16
8
-0/+609
*
Skip test_readline.test_nonascii() on C locale (#5203)
Victor Stinner
2018-01-16
1
-0/+8
*
bpo-31572: Get rid of PyObject_HasAttr() and _PyObject_HasAttrId() in the _io...
Serhiy Storchaka
2018-01-16
5
-63/+105
*
bpo-32544: Speed up hasattr() and getattr() (GH-5173)
INADA Naoki
2018-01-16
5
-19/+71
*
bpo-26163: Frozenset hash improvement (#5194)
Raymond Hettinger
2018-01-16
2
-0/+3
*
bpo-14976: Reentrant simple queue (#3346)
Antoine Pitrou
2018-01-15
12
-12/+1125
*
Implement the get_resource_reader() API for file system imports (#5168)
Barry Warsaw
2018-01-15
6
-1258/+1351
*
Make asyncio tests run when there's no SSL module (#5196)
Yury Selivanov
2018-01-15
1
-3/+0
*
bpo-31900: Fix localeconv() encoding for LC_NUMERIC (#4174)
Victor Stinner
2018-01-15
8
-19/+151
*
bpo-29240: Fix locale encodings in UTF-8 Mode (#5170)
Victor Stinner
2018-01-15
12
-505/+472
*
bpo-26330: Update shutil.disk_usage() documentation (GH-5184)
Cheryl Sabella
2018-01-15
1
-1/+2
*
bpo-15221: Update os.path.is*() documentation (GH-5185)
Cheryl Sabella
2018-01-15
1
-6/+9
*
bpo-29476: Simplify set_add_entry() (#5175)
Raymond Hettinger
2018-01-14
1
-2/+2
*
Add itertools recipe for directly finding the n-th combination (#5161)
Raymond Hettinger
2018-01-13
2
-0/+56
*
Improve enum.Flag code example (GH-5167)
Julian Kahnert
2018-01-13
1
-1/+1
*
bpo-32248: Introduce the concept of Loader.get_resource_reader() (GH-5108)
Brett Cannon
2018-01-12
4
-13/+57
[next]