- 30 Sep, 2014 24 commits
-
-
Georg Brandl authored
-
Georg Brandl authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Antoine Pitrou authored
-
Antoine Pitrou authored
Issue #18711: Add a new `PyErr_FormatV` function, similar to `PyErr_Format` but accepting a `va_list` argument.
-
Victor Stinner authored
remove delayed calls that were cancelled.
-
Victor Stinner authored
calls that were cancelled.
-
Benjamin Peterson authored
-
Antoine Pitrou authored
Remove pointless "vile hack" that can cause the build step to fail when some extension modules can't be imported. See issue #5309 for the build failures, issue #458343 for the original motivation.
-
Victor Stinner authored
_read_null(), because _read_null() cannot be used on AIX. On AIX, reading from NULL is allowed: the first page of memory is a mapped read-only on AIX. _read_null() and _sigabrt() don't accept parameters.
-
Victor Stinner authored
because _read_null() cannot be used on AIX. On AIX, reading from NULL is allowed: the first page of memory is a mapped read-only on AIX.
-
Victor Stinner authored
-
Victor Stinner authored
crash.
-
Victor Stinner authored
os.posix_fadvise() nor os.posix_fallocate() because their prototypes in system headers are wrong.
-
Victor Stinner authored
os.posix_fallocate() because their prototypes in system headers are wrong.
-
Gregory P. Smith authored
-Wsign-compare warnings in unicodeobject.c. These were all a result of sizeof() being unsigned and being compared to a Py_ssize_t. Not actual problems.
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
From Robert Collins.
-
- 29 Sep, 2014 15 commits
-
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
cleanup overflowing handling in unicode_decode_call_errorhandler and unicode_encode_ucs1 (closes #22518)
-
Serhiy Storchaka authored
limited by 100.
-
R David Murray authored
Patch by Claudiu Popa.
-
Serhiy Storchaka authored
-
R David Murray authored
I accidentally merged this in 90b07d422bd9; this merge addresses the last review comments on the patch.
-
R David Murray authored
I accidentally committed this in 6375bf34fff6; this changeset addresses the last review comments on the patch. This is a perennial question and something someone opens a ticket for probably every other month or so, so I'm surprised we didn't already have a FAQ entry for it. The original patch was written by M. Votz, refined first by Ezio Melotti and further refined by me.
-
- 28 Sep, 2014 1 commit
-
-
Alexander Belopolsky authored
This patch brings the pure-python datetime more in-line with the C module. Patch contributed by Brian Kearns, a PyPy developer. PyPy project has been running these modifications in PyPy2 stdlib. This commit includes: - General PEP8/cleanups; - Better testing of argument types passed to constructors; - Removal of duplicate operations; - Optimization of timedelta creation; - Caching the result of __hash__ like the C accelerator; - Enhancements/bug fixes in tests.
-