Staging
v0.8.1

sort by:
Revision Author Date Message Commit Date
0c67a5f post 2.7.12 version 25 June 2016, 21:04:38 UTC
1d6879b merge 2.7.12 release branch 25 June 2016, 21:04:11 UTC
96da94b Added tag v2.7.12 for changeset d33e0cf91556 25 June 2016, 21:03:27 UTC
1fae982 2.7.12 final 25 June 2016, 21:03:21 UTC
4da5815 Adds scripts for building nuget packages. 24 June 2016, 18:39:57 UTC
ff0d875 array.buffer_info() should return a length as int, not long, for compatibility. 24 June 2016, 05:38:59 UTC
919345d Issue #27365: Add blank lines. to 2.7 test_editmenu 23 June 2016, 22:07:46 UTC
0cc5a2b Fixed integer overflow and handled MemoryError in array.buffer_info(). 23 June 2016, 21:00:32 UTC
aaa4baf Issue #27370: Use t for an iterable in mutable sequence ops 23 June 2016, 00:53:05 UTC
8da85a1 Fix the urllib.parse.urljoin docs. Reported by Bo Bayles in docs list. 22 June 2016, 07:56:22 UTC
7a5691f merge 2.7.12 release branch 22 June 2016, 06:13:33 UTC
95d9555 fix idle about dialog #27365 22 June 2016, 06:12:54 UTC
b3eaaf0 Issue #22463: Cure unused function warnings on AIX 22 June 2016, 02:46:33 UTC
2924124 Issue #22463: Correct #endif placement; patch by Senthil Kumaran 22 June 2016, 02:04:38 UTC
646b528 Issue #22463: Backport compiler warning fixes and workarounds * Set but unused variable in Parser/pgen.c in non-debug builds. Patch by Christian Heimes. * Unused static function in Modules/readline.c. Patch by Georg Brandl. * main_window unused in Modules/tkappinit.c. Patch by Gregory P. Smith. * Dead assignment in Modules/_ctypes/cfield.c. Extracted from patch by Brett Cannon. * Expression result unused in PyObject_INIT macro expansions. Based on patches by Christian Heimes. * Load expat_config.h and therefore pyconfig.h before C stdlib headers are loaded. This silences pre-processor warnings including '_POSIX_C_SOURCE redefined'. Extracted from patch by Christian Heimes. 21 June 2016, 23:58:05 UTC
4e6e565 Fix English spelling and grammar errors 20 June 2016, 07:52:50 UTC
4183387 Issue #27294: Numerical state in the repr for Tkinter event objects is now represented as a compination of known flags. 18 June 2016, 19:08:49 UTC
d51b0f2 Issue #24314: Add links for general attributes like __name__, __dict__ 18 June 2016, 03:57:31 UTC
0ffd26f Issue #26930: Update Windows build to OpenSSL 1.0.2h 15 June 2016, 22:12:38 UTC
7ae0a6d Added tag v2.7.12rc1 for changeset 13912cd1e7e8 11 June 2016, 21:46:35 UTC
1563f16 2.7.12 release candidate 1 11 June 2016, 21:46:26 UTC
4b27f14 update pydoc topics 11 June 2016, 21:42:05 UTC
d244a8f upgrade expt to 2.1.1 (closes #26556) 11 June 2016, 20:28:56 UTC
f3ba6a9 Issue #5124: For 2.7, move requires('gui') from module level to setUpClass. 11 June 2016, 20:26:10 UTC
2e1b7fc raise an error when STARTTLS fails 11 June 2016, 20:16:42 UTC
391f1a4 Issue #5124: NEWS entries. 11 June 2016, 08:31:18 UTC
3b6a532 Issue #5124: Paste with selection should always replace. This is how paste work on Windows, Mac, modern Linux apps, and ttk widgets. The exception was X11 tk widgets. Original patch by Serhiy Storchake. 11 June 2016, 06:06:18 UTC
a0f2295 - Issue #17500, and https://github.com/python/pythondotorg/issues/945: Remove unused and outdated icons. 10 June 2016, 16:22:25 UTC
33b19ca Issue #24617: Add comment for os.mkdir about mode quirks 02 June 2016, 19:41:20 UTC
7740c40 Fix typo in comment 10 June 2016, 08:07:11 UTC
c9813d8 Issue #20699: Document that “io” methods should accept memoryview This matches the usage by BufferedReader, BufferedWriter, etc. Also document and test that the write() methods should only access their argument before they return. 03 June 2016, 05:59:20 UTC
eb06301 Issue #22636: Avoid using a shell in the ctypes.util module Replace os.popen() with subprocess.Popen. If the "gcc", "cc" or "objdump" command is not available, the code was supposed to raise an OSError exception. But there was a bug in the code. The shell code returns the exit code 10 if the required command is missing, and the code tries to check for the status 10. The problem is that os.popen() doesn't return the exit code directly, but a status which should be processed by os.WIFEXITED() and os.WEXITSTATUS(). In practice, the exception was never raised. The OSError exception was not documented and ctypes.util.find_library() is expected to return None if the library is not found. Based on patch by Victor Stinner. 16 October 2014, 07:42:45 UTC
f46d3af ctypes: the type of b_size is Py_ssize_t. 17 June 2016, 08:11:07 UTC
ef012cc Issue #27330: Fixed possible leaks in the ctypes module. 16 June 2016, 19:08:11 UTC
c59a92b Issue #26930: Update Windows build to OpenSSL 1.0.2h 15 June 2016, 22:12:38 UTC
34cb3f0 Issue #27301: Fixed incorrect return code for error in compile.c. 15 June 2016, 17:06:29 UTC
b311eee Docs: add html-stable autobuild variant 15 June 2016, 06:57:32 UTC
0e21233 Issue #12855: Document what exactly unicode.splitlines() splits on Also synchronize with Python 3 examples. Based on patches by Matthew Boehm and Alexander Schrijver. 01 June 2016, 09:39:46 UTC
77ccaaf Issue #27238: Got rid of bare excepts in the turtle module. Original patch by Jelle Zijlstra. 14 June 2016, 19:52:13 UTC
d8b5942 Issue #26386: Fixed ttk.TreeView selection operations with item id's containing spaces. 14 June 2016, 09:46:14 UTC
fc0a55f Issue #16182: Backport documentation of set_pre_input_hook() availability 14 June 2016, 08:45:43 UTC
92390ab Issue #27245: IDLE: Cleanly delete custom themes and key bindings. Previously, when IDLE was started from a console or by import, a cascade of warnings was emitted. Patch by Serhiy Storchaka. 14 June 2016, 04:53:18 UTC
53e9f83 Issue #27310: remove vestigial import in IDLE.app 14 June 2016, 00:21:57 UTC
0d86577 Issue #15657: Delete incorrect statement from PyMethodDef documentation 12 June 2016, 13:37:57 UTC
50c7e05 Issue #25455: Clean up reference loops created in tests for recursive functools.partial objects. 12 June 2016, 12:45:14 UTC
59f7114 Rename class attribute "thetype" to "partial" in functools.partial tests for consistency with Python 3. 12 June 2016, 12:43:57 UTC
1e09006 Issue #25455: Backported tests for pickling recursive functools.partial objects. 12 June 2016, 12:08:57 UTC
1f7586e Issue #25455: Fixed a crash in repr of cElementTree.Element with recursive tag. 12 June 2016, 07:06:32 UTC
056cbfd Fix typo in documentation 12 June 2016, 06:14:03 UTC
93f815a Fix buggy RE “\parrot_example.py”, uncovered by Issue #27030 12 June 2016, 06:07:35 UTC
e52140c #16484: Change PYTHONDOCS to "https:", and fix links to use lowercase Implementation by Sean Rodman; test by Kaushik Nadikuditi. 12 June 2016, 05:25:16 UTC
be2bb47 Issue #16484: PYTHONDOCS still uses “http:” in Python 2 12 June 2016, 04:38:34 UTC
6f3a843 off to 2.7.13 11 June 2016, 22:12:35 UTC
9aabacc Issue #7356: ctypes.util: Make parsing of ldconfig output locale independent. Previous fix was only made to dead and removed code. 15 March 2010, 13:46:04 UTC
d6cecd3 Issue #8491: Add link to Gnu Readline configuration documentation 10 June 2016, 00:27:46 UTC
24b9e1a [Issue 15476] Make "code object" its own entry in the index 02 June 2016, 23:26:51 UTC
cff5ec6 merge heads 09 June 2016, 06:18:56 UTC
b3e073c fix leak of keyfile_bytes 09 June 2016, 06:18:51 UTC
3b91de5 stop leaking certfile_bytes (closes #27267) 09 June 2016, 06:16:36 UTC
d5982d0 Issue #23275: Backport empty square bracket assignment documentation fix 08 June 2016, 12:44:30 UTC
6af1c49 Issue #25738: Don’t send message body for 205 Reset Content Patch by Susumu Koshiba. 08 June 2016, 07:16:14 UTC
c363644 Issue #21313: Tolerate truncated buildinfo in sys.version 08 June 2016, 06:12:22 UTC
05837ec Items for NEWS and idlelib/NEWS.txt. 07 June 2016, 19:33:47 UTC
ed722d9 Issue #27229: Comment in middle of shell command fails on BSD and OS X 07 June 2016, 01:07:32 UTC
ab14558 Issue #27229: Fix in-tree cross-build rule, by Xavier de Gaye 07 June 2016, 00:27:17 UTC
835d392 Issue #26014: Guide 2.7 users to the new packaging documentation: - the top-level 2.7 docs page now links to the newer doc pages (installing and distribution) rather than the legacy ones - the legacy install and distutils pages are now labeled as "legacy" - the library/distutils page is updated to match the 3.x version - "See also" links to the new docs are now provided in the legacy pages - links to setuptools documentation have been updated (original patch by Susan Sun) 06 June 2016, 00:35:43 UTC
1a9ee94 Issue #27225: Fixed a reference leak in type_new when setting __new__ fails. Original patch by Xiang Zhang. 05 June 2016, 08:06:42 UTC
fcbb2c4 Issue #21916: Added more tests for the turtle module. Original patch by Jelle Zijlstra. 05 June 2016, 07:35:34 UTC
966d299 Issue #26930: Update OS X 32-bit-only installer builds to use OpenSSL 1.0.2h. 05 June 2016, 00:19:54 UTC
75c6b9b Merge heads 04 June 2016, 20:30:24 UTC
dec45b4 Issue #21916: Added tests for the turtle module. Patch by ingrid, Gregory Loyse and Jelle Zijlstra. 04 June 2016, 20:27:14 UTC
65a139a Issue #24759: Add 'private' notice for idlelib.idle_test. 04 June 2016, 20:15:53 UTC
d37781e Issue #20041: Fixed TypeError when frame.f_trace is set to None. Patch by Xavier de Gaye. 04 June 2016, 17:30:43 UTC
06cd1c3 Issue 27216: Fix typo (noticed by Alex Chan). 04 June 2016, 16:39:42 UTC
0ba3c80 IDLE test README: 'gui' to 'GUI', except in "'gui'" and '-ugui'. 04 June 2016, 06:32:09 UTC
b5f487a Fix typo in code comment 04 June 2016, 04:57:19 UTC
a48aa85 check the result of PyByteArray_Resize in readline() (closes #27211) 04 June 2016, 05:20:44 UTC
bbf29ee Issue 20567: Revise idle_test/README.txt and some tests to match new advice. 03 June 2016, 17:33:09 UTC
e6167e3 [backport to 2.7] - issue8519 - Reference termios and ioctl manual pages in the library documentation. 03 June 2016, 06:51:22 UTC
13e6581 Issue #27185: Rename test_string_merged.py back to test_string.py. 03 June 2016, 06:37:39 UTC
6d38c2b Issue #27185: Merge test_pep292.py into test_string_merged.py. 03 June 2016, 06:36:15 UTC
49d6ab6 Issue #27185: Rename test_pep292.py to test_string_merged.py. 03 June 2016, 06:24:40 UTC
15da226 Issue #27185: Rename test_string.py to test_string_merged.py. 03 June 2016, 06:24:01 UTC
c3cd60e issue25931: document that socketserver.Forking* are unavailable on platforms that support os.fork. 03 June 2016, 05:48:23 UTC
f9f8e18 Exclude unittests from the make profile-opt training run that either take a rediculious amount of time to run, fail or provide little use to the profile feedback. (similar to what is already done in 3.5 and by major Linux distro builds own profiling runs) 02 June 2016, 23:50:07 UTC
c543a0f Issue #25702: A --with-lto configure option has been added that will enable link time optimizations at build time during a make profile-opt. Some compilers and toolchains are known to not produce stable code when using LTO, be sure to test things thoroughly before relying on it. It can provide a few % speed up over profile-opt alone. 02 June 2016, 23:44:40 UTC
e725777 remove (hilarious) defaults for various constants getpath.c needs 02 June 2016, 19:41:35 UTC
3017cef #13784: fix xml.sax.reader getColumn/LineNumber docs. verification and patch by Emily Morehouse. 02 June 2016, 19:13:37 UTC
382d041 note that Py_VISIT handles NULL (closes #27183) 02 June 2016, 18:35:59 UTC
8d496ad Issue #27171: Fix typos in documentation, code comments, and tests 02 June 2016, 10:35:44 UTC
56da8fa Issue #12243: Remove redundant availability notes from getpass docs I wonder why I keep forgetting 2.7 :P Patch by Bryce Verdier. 02 June 2016, 01:32:42 UTC
fcd7d34 Issue #25570: Add example of customizing User-Agent via add_header() 01 June 2016, 08:20:22 UTC
d2b4926 Fix a few typos. Patch by Eitan Adler. 27 January 2013, 04:20:14 UTC
9c771ba fix typo 04 September 2007, 19:43:19 UTC
200a615 Issue #27125: Remove duplicated words from documentation and comments 30 May 2016, 04:04:50 UTC
f50417b Add items to MISC/NEWS and idlelib/NEWS.txt. 30 May 2016, 05:02:28 UTC
739b373 issue27043 - Explain the inspect.cleandoc behavior on synopsis line and other lines. Patch contributed by Nathan Harold. 30 May 2016, 03:38:55 UTC
b44c452 Issue #27125: Fix various errors like “will [be] inherited” 29 May 2016, 08:13:58 UTC
6ee36a5 Backed out changeset e7062dd9085e (#25731) 28 May 2016, 21:03:41 UTC
253c0bf issue26083: Avoid duplicate error message string from a subprocess exec failure.Avoid a duplicate error message string from a subprocess exec failure. :P 28 May 2016, 19:24:14 UTC
back to top