summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* [Issue 15476] Make "code object" its own entry in the indexTommy Beadle2016-06-024-11/+8
|
* merge headsBenjamin Peterson2016-06-0919-49/+620
|\
| * Issue #23275: Backport empty square bracket assignment documentation fixMartin Panter2016-06-081-1/+1
| |
| * Issue #25738: Don’t send message body for 205 Reset ContentMartin Panter2016-06-085-6/+64
| | | | | | | | Patch by Susumu Koshiba.
| * Issue #21313: Tolerate truncated buildinfo in sys.versionMartin Panter2016-06-083-4/+30
| |
| * Items for NEWS and idlelib/NEWS.txt.Terry Jan Reedy2016-06-072-1/+6
| |
| * Issue #27229: Comment in middle of shell command fails on BSD and OS XMartin Panter2016-06-071-1/+1
| |
| * Issue #27229: Fix in-tree cross-build rule, by Xavier de GayeMartin Panter2016-06-072-2/+8
| |
| * Issue #26014: Guide 2.7 users to the new packaging documentation:Ned Deily2016-06-066-29/+57
| | | | | | | | | | | | | | | | | | | | | | - 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)
| * Issue #27225: Fixed a reference leak in type_new when setting __new__ fails.Serhiy Storchaka2016-06-051-1/+5
| | | | | | | | Original patch by Xiang Zhang.
| * Issue #21916: Added more tests for the turtle module.Serhiy Storchaka2016-06-051-0/+35
| | | | | | | | Original patch by Jelle Zijlstra.
| * Issue #26930: Update OS X 32-bit-only installer builds to use OpenSSL 1.0.2h.Ned Deily2016-06-052-5/+5
| |
| * Merge headsSerhiy Storchaka2016-06-041-0/+6
| |\
| | * Issue #24759: Add 'private' notice for idlelib.idle_test.Terry Jan Reedy2016-06-041-0/+6
| | |
| * | Issue #21916: Added tests for the turtle module.Serhiy Storchaka2016-06-042-0/+403
| |/ | | | | | | Patch by ingrid, Gregory Loyse and Jelle Zijlstra.
* | fix leak of keyfile_bytesBenjamin Peterson2016-06-091-0/+1
| |
* | stop leaking certfile_bytes (closes #27267)Benjamin Peterson2016-06-091-0/+1
|/
* Issue #20041: Fixed TypeError when frame.f_trace is set to None.Serhiy Storchaka2016-06-043-5/+15
| | | | Patch by Xavier de Gaye.
* Issue 27216: Fix typo (noticed by Alex Chan).Ned Deily2016-06-041-1/+1
|
* IDLE test README: 'gui' to 'GUI', except in "'gui'" and '-ugui'.Terry Jan Reedy2016-06-041-13/+13
|
* Fix typo in code commentMartin Panter2016-06-041-1/+1
|
* check the result of PyByteArray_Resize in readline() (closes #27211)Benjamin Peterson2016-06-042-1/+6
|
* Issue 20567: Revise idle_test/README.txt and some tests to match new advice.Terry Jan Reedy2016-06-037-26/+27
|
* [backport to 2.7] - issue8519 - Reference termios and ioctl manual pages in ↵Senthil Kumaran2016-06-032-5/+7
| | | | the library documentation.
* Issue #27185: Rename test_string_merged.py back to test_string.py.Serhiy Storchaka2016-06-031-0/+0
|
* Issue #27185: Merge test_pep292.py into test_string_merged.py.Serhiy Storchaka2016-06-032-239/+226
|\
| * Issue #27185: Rename test_pep292.py to test_string_merged.py.Serhiy Storchaka2016-06-031-0/+0
| |
* | Issue #27185: Rename test_string.py to test_string_merged.py.Serhiy Storchaka2016-06-031-0/+0
|/
* issue25931: document that socketserver.Forking* are unavailable on platformsGregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)2016-06-031-0/+4
| | | | that support os.fork.
* Exclude unittests from the make profile-opt training run that eitherGregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)2016-06-021-1/+3
| | | | | | 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)
* Issue #25702: A --with-lto configure option has been added that willGregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)2016-06-024-2/+89
| | | | | | | 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.
* remove (hilarious) defaults for various constants getpath.c needsBenjamin Peterson2016-06-021-23/+2
|
* #13784: fix xml.sax.reader getColumn/LineNumber docs.R David Murray2016-06-021-2/+2
| | | | verification and patch by Emily Morehouse.
* note that Py_VISIT handles NULL (closes #27183)Benjamin Peterson2016-06-021-3/+4
|
* Issue #27171: Fix typos in documentation, code comments, and testsMartin Panter2016-06-0225-38/+38
|
* Issue #12243: Remove redundant availability notes from getpass docsBerker Peksag2016-06-021-3/+1
| | | | | | I wonder why I keep forgetting 2.7 :P Patch by Bryce Verdier.
* Issue #25570: Add example of customizing User-Agent via add_header()Martin Panter2016-06-012-1/+8
|
* Fix a few typos. Patch by Eitan Adler.Ezio Melotti2013-01-273-3/+3
|
* fix typoFred Drake2007-09-041-1/+1
|
* Issue #27125: Remove duplicated words from documentation and commentsMartin Panter2016-05-309-10/+10
|
* Add items to MISC/NEWS and idlelib/NEWS.txt.Terry Jan Reedy2016-05-302-0/+41
|
* issue27043 - Explain the inspect.cleandoc behavior on synopsis line and ↵Senthil Kumaran2016-05-301-2/+6
| | | | | | other lines. Patch contributed by Nathan Harold.
* Issue #27125: Fix various errors like “will [be] inherited”Martin Panter2016-05-2912-14/+15
|
* Backed out changeset e7062dd9085e (#25731)Benjamin Peterson2016-05-281-1/+1
|
* issue26083: Avoid duplicate error message string from a subprocess exec ↵Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)2016-05-281-1/+1
| | | | | | failure.Avoid a duplicate error message string from a subprocess exec failure. :P
* Issue 25926: Clarify that the pure python equivalents are only approximate.Raymond Hettinger2016-05-282-20/+21
|
* Issue #26553: Capitalization of HTTP, HTTPS, FTP, and URLMartin Panter2016-05-287-11/+11
| | | | Patch by Anish Shah and Aatish Neupane.
* Issue #5784: Cannot test wbits=0 unless we know we have zlib v1.2.3.5Martin Panter2016-05-272-2/+1
|
* Issue #5784: Expand documentation and tests for zlib wbits parameterMartin Panter2016-05-273-19/+98
| | | | Based on documentation by AM Kuchling.
* stop talking about svnBenjamin Peterson2016-05-271-4/+3
|