- 20 Nov, 2013 4 commits
-
-
Christian Heimes authored
Python now uses SipHash24 on all major platforms.
-
Christian Heimes authored
Now './configure --silent && make -s' doesn't print any message to stdout or stderr.
-
Christian Heimes authored
-
Christian Heimes authored
-
- 19 Nov, 2013 29 commits
-
-
Christian Heimes authored
-
Christian Heimes authored
-
Victor Stinner authored
"hf" type is INT_PTR, it is used to store an int in _msi.c.
-
Victor Stinner authored
-
Victor Stinner authored
On AIX, the C locale encoding uses the ISO-8859-1 encoding, not ASCII.
-
Victor Stinner authored
Some compilers (ex: Visual Studio) decode -2147483648 as a unsigned integer instead of an signed integer.
-
Victor Stinner authored
INT32_MIN and INT32_MAX constants are unknown on Windows.
-
Victor Stinner authored
compiler warnings on Windows 64-bit. Use Py_SAFE_DOWNCAST() where the final downcast is needed. The bytecode doesn't support integer parameters larger than 32-bit yet.
-
Guido van Rossum authored
-
Ezio Melotti authored
-
R David Murray authored
-
R David Murray authored
csv was handling non-string keys fine except for the error message generated when a non-string key was not in 'fieldnames'. Fix by Tomas Grahn, full patch-with-test by Vajrasky Kok (tweaked slightly).
-
Andrew Kuchling authored
-
Andrew Kuchling authored
Also, add a link to the Babel package.
-
Martin v. Löwis authored
-
Serhiy Storchaka authored
-
Nick Coghlan authored
The zlib and hex codecs throw custom exception types with weakref support if the input type is valid, but the data fails validation. Make sure the exception chaining in the codec infrastructure can wrap those as well.
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
-
Serhiy Storchaka authored
The utf-16* and utf-32* encoders no longer allow surrogate code points (U+D800-U+DFFF) to be encoded. The utf-32* decoders no longer decode byte sequences that correspond to surrogate code points. The surrogatepass error handler now works with the utf-16* and utf-32* codecs. Based on patches by Victor Stinner and Kang-Hao (Kenny) Lu.
-
doko@ubuntu.com authored
-
doko@ubuntu.com authored
-
doko@ubuntu.com authored
-
doko@ubuntu.com authored
-
Zachary Ware authored
This will be merged into default when PEP451 is merged in. See changeset 5d38989191bb in features/pep-451
-
Zachary Ware authored
to avoid reporting success on empty tests.
-
- 18 Nov, 2013 7 commits
-
-
Victor Stinner authored
-
Gregory P. Smith authored
-
Gregory P. Smith authored
exists in 3.4 but apparently wasn't done for 3.3).
-
Victor Stinner authored
the PyAccu API
-
Victor Stinner authored
On Windows, a factor of 50% gives best performances.
-
Charles-François Natali authored
-
Victor Stinner authored
reference counter of stgdict after result stole a reference to it
-