- 23 Sep, 2015 6 commits
-
-
Terry Jan Reedy authored
so it is not triggered on import. The problem is creation of a now-unused instance "helpDialog = HelpDialog()", left for back compatibility. So instead trigger the warning when that instance or another is used.
-
Martin Panter authored
This restores the ability to write encoding names in uppercase like "UTF-8", which worked in Python 2.
-
Terry Jan Reedy authored
-
Terry Jan Reedy authored
Patch by Mark Roseman.
-
Steve Dower authored
-
Steve Dower authored
Issue #19143: platform module now reads Windows version from kernel32.dll to avoid compatibility shims.
-
- 22 Sep, 2015 2 commits
-
-
Terry Jan Reedy authored
-
Terry Jan Reedy authored
Change destination to help.html. Adjust NEWS entries.
-
- 21 Sep, 2015 14 commits
-
-
Terry Jan Reedy authored
-
Victor Stinner authored
The proactor event loop requires also to mock loop._stop_serving.
-
Victor Stinner authored
ssl.SSLContext() does not always disable compression. Fix unit test.
-
Victor Stinner authored
sequence of strings. Patch written by Yann Sionneau.
-
Victor Stinner authored
This info is required on Python 3.5 and newer to get specific information on the SSL object, like getting the binary peer certificate (instead of getting it as text).
-
Victor Stinner authored
of catching socket.EAI_NODATA error which doesn't exist on FreeBSD.
-
Terry Jan Reedy authored
-
Terry Jan Reedy authored
above "What's New and 0 lines above "Release date". Remove most old headers for non-final releases (they currently do not get carried forward.
-
Berker Peksag authored
threading and multiprocessing modules. In multiprocessing, the name of the first parameter of the acquire methods is "block", but "blocking" in threading. This commit also improves documentation of Lock and RLock. Patch by Davin Potts.
-
Terry Jan Reedy authored
-
Berker Peksag authored
Patch by Bar Harel.
-
Terry Jan Reedy authored
-
Terry Jan Reedy authored
-
Terry Jan Reedy authored
-
- 20 Sep, 2015 5 commits
-
-
Terry Jan Reedy authored
The new idlelib/idle.html is copied from Doc/build/html/idle.html. It looks better than help.txt and will better document Idle as released. The tkinter html viewer that works for this file was written by Rose Roseman. The new code is in idlelib/help.py, a new file for help menu classes. The now unused EditorWindow.HelpDialog class and helt.txt file are deprecated.
-
Benjamin Peterson authored
Patch by Bar Harel.
-
Benjamin Peterson authored
-
Terry Jan Reedy authored
-
Martin Panter authored
-
- 19 Sep, 2015 1 commit
-
-
Serhiy Storchaka authored
-
- 18 Sep, 2015 4 commits
-
-
Victor Stinner authored
Leopard because this OS uses out of date (pre 2011k) timezone files.
-
Victor Stinner authored
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 authored
format_stack(), and extract_stack() called without arguments.
-
Ethan Furman authored
-
- 15 Sep, 2015 1 commit
-
-
Berker Peksag authored
Reported by Jakub Wilk.
-
- 14 Sep, 2015 1 commit
-
-
Victor Stinner authored
Fix the regex to support the version 7.10: minor version with two digits
-
- 13 Sep, 2015 2 commits
-
-
Serhiy Storchaka authored
-
Benjamin Peterson authored
Patch by TAKASE Arihiro.
-
- 12 Sep, 2015 4 commits
-
-
Kristján Valur Jónsson authored
-
Kristján Valur Jónsson authored
invalid memory.
-
Serhiy Storchaka authored
Fixed the case of the "Ctrl-" prefixes.
-
Martin Panter authored
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.
-