- 18 Eyl, 2015 3 kayıt (commit)
-
-
Victor Stinner yazdı
of datetime.datetime: microseconds are now rounded to nearest with ties going to nearest even integer (ROUND_HALF_EVEN), instead of being rounding towards zero (ROUND_DOWN). It's important that these methods use the same rounding mode than datetime.timedelta to keep the property: (datetime(1970,1,1) + timedelta(seconds=t)) == datetime.utcfromtimestamp(t) It also the rounding mode used by round(float) for example. Add more unit tests on the rounding mode in test_datetime.
-
Serhiy Storchaka yazdı
format_stack(), and extract_stack() called without arguments.
-
Ethan Furman yazdı
-
- 15 Eyl, 2015 1 kayıt (commit)
-
-
Berker Peksag yazdı
Reported by Jakub Wilk.
-
- 14 Eyl, 2015 1 kayıt (commit)
-
-
Victor Stinner yazdı
Fix the regex to support the version 7.10: minor version with two digits
-
- 13 Eyl, 2015 2 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
Benjamin Peterson yazdı
Patch by TAKASE Arihiro.
-
- 12 Eyl, 2015 4 kayıt (commit)
-
-
Kristján Valur Jónsson yazdı
-
Kristján Valur Jónsson yazdı
invalid memory.
-
Serhiy Storchaka yazdı
Fixed the case of the "Ctrl-" prefixes.
-
Martin Panter yazdı
This changes the equivalent functions listed for the Base-64, hex and Quoted- Printable codecs to reflect the functions actually used. Also mention and test the "quotetabs" setting for Quoted-Printable encoding.
-
- 11 Eyl, 2015 7 kayıt (commit)
-
-
Martin Panter yazdı
Remove notice that was backported in revision 50527a1b769c.
-
Martin Panter yazdı
Patch from Tim Tisdall.
-
Zachary Ware yazdı
Reported by Nat Dunn on docs@
-
Victor Stinner yazdı
PyUnicode_AsEncodedString() instead of calling the encode() method of the host, to handle correctly custom string with an encode() method which doesn't return a byte string. The encoder of the IDNA codec is now called directly instead of calling the encode() method of the string.
-
Martin Panter yazdı
Patch from Shiyao Ma.
-
Martin Panter yazdı
-
Martin Panter yazdı
-
- 10 Eyl, 2015 3 kayıt (commit)
-
-
Zachary Ware yazdı
-
Zachary Ware yazdı
It was very much outdated, and the topic is better covered elsewhere.
-
Berker Peksag yazdı
-
- 09 Eyl, 2015 5 kayıt (commit)
-
-
Berker Peksag yazdı
boolean result instead of raising an exception. Patch by A Kaptur.
-
Martin Panter yazdı
Patch from Tim Tisdall.
-
Martin Panter yazdı
Needs to be tested on a BSD.
-
Terry Jan Reedy yazdı
-
Martin Panter yazdı
Also fix signature because os.utime(..., ns=None) is not allowed.
-
- 08 Eyl, 2015 4 kayıt (commit)
-
-
Serhiy Storchaka yazdı
the path of the directory for temporary files contains symlinks.
-
Raymond Hettinger yazdı
-
Zachary Ware yazdı
Patch by Shaun Walbridge
-
Serhiy Storchaka yazdı
for directories (including empty directories) in ZIP file. Added test for comparing shutil.make_archive() with the "zip" command.
-
- 07 Eyl, 2015 8 kayıt (commit)
-
-
Serhiy Storchaka yazdı
expat parser.
-
Serhiy Storchaka yazdı
Added additional tests for expat parser attributes. Based on patch by John Leitch.
-
Serhiy Storchaka yazdı
Windows. The test now makes sense on non-Windows. Added similar test for zip format.
-
Serhiy Storchaka yazdı
details in issue25018.
-
Terry Jan Reedy yazdı
there (as when opening Idle from interactive Python on Windows).
-
Steve Dower yazdı
-
Martin Panter yazdı
Patch from John Beck.
-
Martin Panter yazdı
Patch from Matheus Vieira Portela.
-
- 06 Eyl, 2015 2 kayıt (commit)
-
-
Ezio Melotti yazdı
-
Serhiy Storchaka yazdı
-