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
/
Modules
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-32557: allow shutil.disk_usage to take a file path on Windows also (GH-9372)
Joe Pamer
2018-09-25
1
-2/+27
*
Migrate datetime.date.fromtimestamp to Argument Clinic (GH-8535)
Tim Hoffmann
2018-09-24
2
-18/+33
*
bpo-34659: Adds initial kwarg to itertools.accumulate() (GH-9345)
Lisa Roach
2018-09-24
2
-10/+37
*
bpo-34670: Add TLS 1.3 post handshake auth (GH-9460)
Christian Heimes
2018-09-23
2
-9/+111
*
bpo-34759: Fix error handling in ssl 'unwrap()' (GH-9468)
Nathaniel J. Smith
2018-09-22
1
-2/+2
*
bpo-34762: Fix contextvars C API to use PyObject* pointer types. (GH-9473)
Yury Selivanov
2018-09-21
1
-1/+1
*
Minor performance tweak for deque.index() with a start argument (GH-9440)
Raymond Hettinger
2018-09-21
1
-2/+4
*
bpo-34755: Add few minor optimizations in _asynciomodule.c. (GH-9455)
Serhiy Storchaka
2018-09-21
1
-158/+116
*
bpo-34735: Fix a memory leak in Modules/timemodule.c (GH-9418)
Zackery Spytz
2018-09-21
1
-0/+1
*
Simplify PyInit_timezone. (GH-9467)
Benjamin Peterson
2018-09-21
1
-50/+48
*
closes bpo-34656: Avoid relying on signed overflow in _pickle memos. (GH-9261)
Benjamin Peterson
2018-09-21
1
-31/+31
*
bpo-34743: Fix test_database_source_name under SQLite 3.7.9 (GH-9426)
Berker Peksag
2018-09-20
1
-0/+6
*
bpo-32215: Fix performance regression in sqlite3 (GH-8511)
Berker Peksag
2018-09-20
1
-4/+4
*
Revert "bpo-34589: Add -X coerce_c_locale command line option (GH-9378)" (GH-...
Victor Stinner
2018-09-19
2
-32/+13
*
bpo-25711: Rewrite zipimport in pure Python. (GH-6809)
Serhiy Storchaka
2018-09-18
3
-1993/+0
*
bpo-34623: Use XML_SetHashSalt in _elementtree (GH-9146)
Christian Heimes
2018-09-18
2
-0/+10
*
bpo-33721: Make some os.path functions and pathlib.Path methods be tolerant ...
Serhiy Storchaka
2018-09-18
2
-26/+15
*
bpo-32455: Add jump parameter to dis.stack_effect(). (GH-6610)
Serhiy Storchaka
2018-09-18
2
-11/+33
*
bpo-34589: C locale coercion off by default (GH-9073)
Victor Stinner
2018-09-17
1
-5/+24
*
bpo-34589: Make _PyCoreConfig.coerce_c_locale private (GH-9371)
Victor Stinner
2018-09-17
2
-8/+8
*
bpo-34715: Revert "Simplify PyInit_timezone. (GH-9323)" (GH-9366)
Victor Stinner
2018-09-17
1
-15/+68
*
bpo-32533: Fixed thread-safety of error handling in _ssl. (GH-7158)
Steve Dower
2018-09-17
1
-60/+68
*
Convert os.readlink() to Argument Clinic. (GH-8778)
Serhiy Storchaka
2018-09-17
2
-84/+202
*
bpo-34710: fix SSL module build (GH-9347)
Alexandru Ardelean
2018-09-17
1
-0/+1
*
bpo-34603, ctypes/libffi_msvc: Fix returning structs from functions (GH-9258)
Vladimir Matveev
2018-09-16
5
-6/+221
*
Simplify PyInit_timezone. (GH-9323)
Benjamin Peterson
2018-09-14
1
-68/+15
*
bpo-34651: Only allow the main interpreter to fork. (gh-9279)
Eric Snow
2018-09-14
2
-0/+19
*
bpo-34672: Don't pass NULL to gmtime_r. (GH-9312)
Benjamin Peterson
2018-09-14
1
-1/+2
*
bpo-34672: Try to pass the C library's own timezone strings back to it. (GH-9...
Benjamin Peterson
2018-09-14
1
-4/+36
*
bpo-34674: Assume unistd.h exists on Unix. (GH-9290)
Benjamin Peterson
2018-09-14
2
-38/+0
*
Remove wording that could be deemed to be perjorative (GH-9287)
Raymond Hettinger
2018-09-14
2
-4/+4
*
bpo-34658: Fix rare subprocess prexec_fn fork error. (GH-9255)
Gregory P. Smith
2018-09-13
1
-7/+13
*
bpo-34649: Add missing NULL checks to _encoded_const() (GH-9225)
Alexey Izbyshev
2018-09-12
1
-3/+3
*
bpo-31577: Fix a crash in os.utime() in case of a bad ns argument. (GH-3752)
Oren Milman
2018-09-12
1
-0/+6
*
closes bpo-34646: Remove PyAPI_* macros from declarations. (GH-9218)
Benjamin Peterson
2018-09-12
3
-4/+4
*
Simplified implementation of _sre.ascii_iscased(). (GH-9097)
Sergey Fedoseev
2018-09-12
1
-6/+1
*
closes bpo-25041: Document AF_PACKET socket address format. (GH-4092)
Cheryl Sabella
2018-09-12
1
-3/+3
*
Delete old expat comment. (GH-9197)
Benjamin Peterson
2018-09-12
1
-8/+0
*
closes bpo-31903: Release the GIL when calling into SystemConfiguration (GH-4...
Max BĂ©langer
2018-09-11
1
-0/+6
*
bpo-34636: Use fast path for more chars in SRE category macros. (GH-9170)
Sergey Fedoseev
2018-09-11
1
-3/+3
*
bpo-20180: convert most of itertoolsmodule.c to use Argument Clinic (GH-9164)
Tal Einat
2018-09-11
2
-219/+694
*
closes bpo-31608: Fix a crash in methods of a subclass of _collections.deque ...
Oren Milman
2018-09-11
1
-4/+13
*
bpo-29386: Pass -1 to epoll_wait() when timeout is < -1 (GH-9040)
Berker Peksag
2018-09-11
1
-8/+15
*
bpo-34622: Extract asyncio exceptions into a separate module (GH-9141)
Andrew Svetlov
2018-09-11
1
-0/+2
*
closes bpo-29832: Remove "getsockaddrarg" from error messages. (GH-3163)
Oren Milman
2018-09-11
1
-60/+119
*
bpo-34625: Update vendorized expat version to 2.2.6. (GH-9150)
Benjamin Peterson
2018-09-11
4
-27/+69
*
bpo-32270: Don't close stdin/out/err in pass_fds (GH-6242)
Gregory P. Smith
2018-09-11
1
-10/+14
*
bpo-20180: itertools.groupby Argument Clinic conversion (GH-4170)
Tal Einat
2018-09-10
2
-23/+105
*
Fix misleading mentions of tp_size in comments (GH-9093)
Peter Eisentraut
2018-09-10
13
-18/+18
*
bpo-20104: Change the file_actions parameter of os.posix_spawn(). (GH-6725)
Serhiy Storchaka
2018-09-08
2
-9/+10
[next]