- 03 May, 2012 8 kayıt (commit)
-
-
Victor Stinner yazdı
accumulator. Directly write characters into the output (don't use a temporary list): resize and widen the string on demand.
-
Vinay Sajip yazdı
-
Vinay Sajip yazdı
-
Victor Stinner yazdı
Don't convert uninitialized characters. Patch written by Serhiy Storchaka.
-
Larry Hastings yazdı
Removed futimens as it is now redundant. Changed shutil.copystat to use st_atime_ns and st_mtime_ns from os.stat and ns= parameter to utime--it once again preserves exact metadata on Linux!
-
Victor Stinner yazdı
Use also directly unicode_empty, instead of PyUnicode_New(0,0).
-
Victor Stinner yazdı
Remove the fast-path for 1-character string: unicode_fromascii() and _PyUnicode_FromUCS*() now have their own fast-path for 1-character strings.
-
Victor Stinner yazdı
-
- 02 May, 2012 10 kayıt (commit)
-
-
Victor Stinner yazdı
Avoid an useless and expensive call to PyUnicode_READ().
-
Charles-François Natali yazdı
-
Charles-François Natali yazdı
-
Charles-François Natali yazdı
-
Richard Oudkerk yazdı
Previously, when an error was encountered some processes would not be stopped until atexit callbacks were run. On Windows that was too late to prevent a PermissionError when regrtest tried to remove the temp directory it ran the tests in.
-
Charles-François Natali yazdı
associated pwd entry.
-
Charles-François Natali yazdı
associated pwd entry.
-
Martin v. Löwis yazdı
-
Senthil Kumaran yazdı
-
Senthil Kumaran yazdı
-
- 01 May, 2012 22 kayıt (commit)
-
-
Victor Stinner yazdı
of the second argument of PyUnicode_New(). * Create also align_maxchar() function * Optimize fix_decimal_and_space_to_ascii(): don't compute the maximum character when ch <= 127 (it is ASCII)
-
Victor Stinner yazdı
-
Victor Stinner yazdı
* formatfloat() uses unicode_fromascii() instead of PyUnicode_DecodeASCII() to not have to check characters, we know that it is really ASCII * Use PyUnicode_FromOrdinal() instead of _PyUnicode_FromUCS4() to format a character: if avoids a call to ucs4lib_find_max_char() to compute the maximum character (whereas we already know it, it is just the character itself)
-
Martin v. Löwis yazdı
-
Benjamin Peterson yazdı
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Martin v. Löwis yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Martin v. Löwis yazdı
-