- 17 Nis, 2013 19 kayıt (commit)
-
-
Victor Stinner yazdı
* Add also min_char attribute to _PyUnicodeWriter structure (currently unused) * _PyUnicodeWriter_Init() has no more argument (except the writer itself): min_length and overallocate must be set explicitly * In error handlers, only enable overallocation if the replacement string is longer than 1 character * CJK decoders don't use overallocation anymore * Set min_length, instead of preallocating memory using _PyUnicodeWriter_Prepare(), in many decoders * _PyUnicode_DecodeUnicodeInternal() checks for integer overflow
-
Richard Oudkerk yazdı
-
Richard Oudkerk yazdı
-
Richard Oudkerk yazdı
-
Richard Oudkerk yazdı
registry does not grow exponentially with generation of process.
-
Antoine Pitrou yazdı
Issue #17782: Fix undefined behaviour on platforms where ``struct timespec``'s "tv_nsec" member is not a C long.
-
Antoine Pitrou yazdı
- Issue #17782: Fix undefined behaviour on platforms where ``struct timespec``'s "tv_nsec" member is not a C long.
-
Richard Oudkerk yazdı
registry does not grow exponentially with generation of process.
-
Benjamin Peterson yazdı
-
Giampaolo Rodola yazdı
-
Giampaolo Rodola yazdı
-
Roger Serwy yazdı
-
Roger Serwy yazdı
-
Ezio Melotti yazdı
-
Ezio Melotti yazdı
-
Ezio Melotti yazdı
-
Ezio Melotti yazdı
-
Ezio Melotti yazdı
-
Ezio Melotti yazdı
-
- 16 Nis, 2013 9 kayıt (commit)
-
-
Antoine Pitrou yazdı
Thanks to David D Lowe for reporting.
-
Antoine Pitrou yazdı
Thanks to David D Lowe for reporting.
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
variable if empty path argument is specified. Patch by Serhiy Storchaka.
-
Barry Warsaw yazdı
variable if empty path argument is specified. Patch by Serhiy Storchaka.
-
Alexandre Vassalotti yazdı
The C version tried to remove trailing whitespace between the last quote and the newline character. I am not sure why it had this because pickle never generated such pickles---for this to happen repr(some_string) would need to return trailing whitespace. It was maybe there to make it easier for people to write pickles in text editors. Anyhow, the Python version doesn't do this so there is no point keeping this around anymore. Also, I've changed the exception raised when a bad pickle is encountered. Again this unlikely to make much difference to anyone though it does make testing slightly nicer for us.
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
- 15 Nis, 2013 9 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
-
Ezio Melotti yazdı
-
Ezio Melotti yazdı
-
Eric V. Smith yazdı
-
Eric V. Smith yazdı
-
Nick Coghlan yazdı
-
Nick Coghlan yazdı
-
Vinay Sajip yazdı
-
- 14 Nis, 2013 3 kayıt (commit)
-
-
Victor Stinner yazdı
* No need to double-check that strings are ready: test already done by PyUnicode_FromObject() * Remove useless kind variable (use kind1 instead)
-
Victor Stinner yazdı
-
Victor Stinner yazdı
* Check also that right is a Unicode object * call directly resize_compact() instead of unicode_resize() for a more explicit error handling, and to avoid testing some properties twice (ex: unicode_modifiable())
-