- 26 Şub, 2012 1 kayıt (commit)
-
-
Nick Coghlan yazdı
-
- 25 Şub, 2012 1 kayıt (commit)
-
-
Stefan Krah yazdı
and lifetime issues of dynamically allocated Py_buffer members (#9990) as well as crashes (#8305, #7433). Many new features have been added (See whatsnew/3.3), and the documentation has been updated extensively. The ndarray test object from _testbuffer.c implements all aspects of PEP-3118, so further development towards the complete implementation of the PEP can proceed in a test-driven manner. Thanks to Nick Coghlan, Antoine Pitrou and Pauli Virtanen for review and many ideas. - Issue #12834: Fix incorrect results of memoryview.tobytes() for non-contiguous arrays. - Issue #5231: Introduce memoryview.cast() method that allows changing format and shape without making a copy of the underlying memory.
-
- 23 Şub, 2012 3 kayıt (commit)
-
-
Victor Stinner yazdı
* Decode thousands separator and decimal point using PyUnicode_DecodeLocale() (from the locale encoding), instead of decoding them implicitly from latin1 * Remove _PyUnicode_InsertThousandsGroupingLocale(), it was not used * Change _PyUnicode_InsertThousandsGrouping() API to return the maximum character if unicode is NULL * Replace MIN/MAX macros by Py_MIN/Py_MAX * stringlib/undef.h undefines STRINGLIB_IS_UNICODE * stringlib/localeutil.h only supports Unicode
-
Georg Brandl yazdı
-
Benjamin Peterson yazdı
-
- 21 Şub, 2012 2 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
Benjamin Peterson yazdı
-
- 20 Şub, 2012 2 kayıt (commit)
-
-
Georg Brandl yazdı
in order to make algorithmic complexity attacks on (e.g.) web apps much more complicated. The environment variable PYTHONHASHSEED and the new command line flag -R control this behavior.
-
Benjamin Peterson yazdı
-
- 08 Şub, 2012 2 kayıt (commit)
-
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
- 31 Ock, 2012 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 29 Ock, 2012 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
Patch by Hynek Schlawack.
-
- 22 Ock, 2012 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
I had to move the static identifier code from unicodeobject.h to object.h in order for this to work.
-
- 19 Ock, 2012 1 kayıt (commit)
-
-
Meador Inge yazdı
-
- 17 Ock, 2012 1 kayıt (commit)
-
-
Amaury Forgeot d'Arc yazdı
PyDateTime_DELTA_GET_DAYS, PyDateTime_DELTA_GET_SECONDS, PyDateTime_DELTA_GET_MICROSECONDS. Please use them instead of directly accessing PyDateTime_Delta struct members.
-
- 16 Ock, 2012 2 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
Meador Inge yazdı
-
- 14 Ock, 2012 4 kayıt (commit)
-
-
Gregory P. Smith yazdı
to a single #define instead of having several copies in several files. This excludes the Modules/ tree (datetime and expat both have a copy for their own purposes with no need for it to be the same).
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Nick Coghlan yazdı
-
- 13 Ock, 2012 2 kayıt (commit)
-
-
Amaury Forgeot d'Arc yazdı
-
Nick Coghlan yazdı
-
- 11 Ock, 2012 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
Also broaden the category of characters that count as lowercase/uppercase.
-
- 03 Ock, 2012 1 kayıt (commit)
-
-
Victor Stinner yazdı
It is faster than the unicode_fill() function which was implemented in formatter_unicode.c.
-
- 23 Ara, 2011 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
Patch by sbt.
-
- 22 Ara, 2011 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 19 Ara, 2011 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 17 Ara, 2011 3 kayıt (commit)
-
-
Victor Stinner yazdı
-
Victor Stinner yazdı
instead of surrogateescape So it would be possible to support more error handlers later.
-
Victor Stinner yazdı
* Use PyUnicode_EncodeLocale() in time.strftime() if wcsftime() is not available * Document my last changes in Misc/NEWS
-
- 16 Ara, 2011 2 kayıt (commit)
-
-
Victor Stinner yazdı
* PyUnicode_DecodeLocaleAndSize() and PyUnicode_DecodeLocale() decode a string from the current locale encoding * _Py_char2wchar() writes an "error code" in the size argument to indicate if the function failed because of memory allocation failure or because of a decoding error. The function doesn't write the error message directly to stderr. * Fix time.strftime() (if wcsftime() is missing): decode strftime() result from the current locale encoding, not from the filesystem encoding.
-
Antoine Pitrou yazdı
Initial patch by Matthias Troffaes.
-
- 15 Ara, 2011 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
Thanks to Darren Dale for patch.
-
- 12 Ara, 2011 4 kayıt (commit)
-
-
Antoine Pitrou yazdı
Patch by sbt.
-
Victor Stinner yazdı
Call also directly unicode_resize() in unicodeobject.c
-
Victor Stinner yazdı
Fix also PyUnicode_Resize() doc
-
Victor Stinner yazdı
Undocument the function. Make also decode_utf8_errors() as private (static).
-
- 11 Ara, 2011 1 kayıt (commit)
-
-
Victor Stinner yazdı
-