summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Issue #20520: Fixed readline test in test_codecs.Serhiy Storchaka2014-02-061-6/+15
|
* Issue #20374: delete spurious empty lineNed Deily2014-02-061-1/+0
|
* Issue #20374: Avoid compiler warnings when compiling readline with libedit.Ned Deily2014-02-061-0/+9
|
* Issue #19920: Added tests for TarFile.list(). Based on patch by Vajrasky Kok.Serhiy Storchaka2014-02-052-0/+79
|
* Issue #20498: Fixed io.StringIO tests for newline='\n'. Added new tests.Serhiy Storchaka2014-02-051-1/+36
|
* Issue #20509: Added cross-reference in documentation.Vinay Sajip2014-02-041-2/+3
|
* mmap obmalloc arenas so that they may be immediately returned to the system ↵Benjamin Peterson2014-02-045-15/+46
| | | | when unused (closes #20494)
* Skip expr* tests for large integers for Tcl <8.5.Serhiy Storchaka2014-02-031-4/+8
| | | | | The '**' operator is available only since 8.5 and in any case such large integers are not supported on Tcl <8.5.
* Issue #20426: When passing the re.DEBUG flag, re.compile() displays the ↵Antoine Pitrou2014-02-033-7/+27
| | | | debug output every time it is called, regardless of the compilation cache.
* Issue #19761: Fixed Tkinter tests on OS X.Serhiy Storchaka2014-02-032-7/+14
|
* Issue #20368: The null character now correctly passed from Tcl to Python (inSerhiy Storchaka2014-02-034-105/+174
| | | | unicode strings only). Improved error handling in variables-related commands.
* Merge headsSerhiy Storchaka2014-02-031-1/+1
|\
| * use system mercurialBenjamin Peterson2014-02-031-1/+1
| |
* | Issue #20368: Add tests for Tkinter methods exprstring(), exprdouble(),Serhiy Storchaka2014-02-031-0/+131
|/ | | | exprlong() and exprboolean().
* Added cookbook entry on logging filter configuration using dictConfig().Vinay Sajip2014-02-031-0/+220
|
* Issue #20435: Fix _pyio.StringIO.getvalue() to take into account newline ↵Antoine Pitrou2014-02-023-1/+19
| | | | translation settings.
* Issue #19990: Install test/imghdrdata.Ned Deily2014-02-021-1/+3
|
* Issue #20423: fix documentation of io.StringIO's newline parameterAntoine Pitrou2014-02-021-3/+3
|
* Issue #19320: Fixed split/splitlist tests in test_tcl for Tcl 8.5.0-8.5.5.Serhiy Storchaka2014-02-021-5/+32
|
* use with statement to ensure zipfile is always closed (closes #20102)Benjamin Peterson2014-02-021-11/+9
|
* Update the python.gif icon for the Idle classbrowser and pathbowserTerry Jan Reedy2014-02-021-0/+0
| | | | from the old green snake to the new new blue and yellow snakes.
* #20288: fix handling of invalid numeric charrefs in HTMLParser.Ezio Melotti2014-02-013-3/+11
|
* Issue #19683: Add __closure__ and other missing attributes to function docs.Mark Dickinson2014-02-011-24/+30
|
* Fix unfinished thought in xml overview page. Suggested by Bo Bayles on docs@.Zachary Ware2014-01-311-0/+1
|
* Idle test: 2nd try at suppressing compile time warning (hint by Nick Coghlan).Terry Jan Reedy2014-01-311-1/+1
|
* Issue #20444: Reduced code duplication. Thanks to dongwm for the report and ↵Vinay Sajip2014-01-301-52/+36
| | | | patch.
* Idlelib & buildbots: suppress py3 deprecation message even if enabled.Terry Jan Reedy2014-01-291-2/+6
|
* Backported a test for lone surrogates support in io.StringIO.Serhiy Storchaka2014-01-291-0/+10
|
* Silence deprecation warning in sunau.pyTerry Jan Reedy2014-01-291-1/+1
|
* Idlelib: silence two buildbot Deprecation Warnings with better code.Terry Jan Reedy2014-01-292-8/+6
|
* Remove unneeded use of globals() and locals() in test on importsGregory P. Smith2014-01-281-9/+8
| | | | introduced with the issue19081 tests.
* Remove inaccurate comment and a the related recently addedGregory P. Smith2014-01-281-7/+0
| | | | | | Py_VerboseFlag print that can never be triggered. prefix[0] is always equal to 0 at this point in the code.
* Refactor the new test for issue19081 to exec import statements into aGregory P. Smith2014-01-281-10/+14
| | | | | test_ns dict instead of the actual globals() and locals(). Suggested after review by Thomas Wouters.
* Issue #19456: ntpath.join() now joins relative paths correctly when a driveSerhiy Storchaka2014-01-273-68/+61
| | | | is present.
* Issue #19081: Remove the zipimporter.files reference as the zip TOCGregory P. Smith2014-01-272-73/+200
| | | | | | | | | | | | | caches are module global in the zip_directory_cache. When it is updated due to a changed zip file, all zipimporter instances need to see the same updates TOC cache. This fixes the bug for the overlooked submodule import case from the earlier round of changes. Includes tests that would fail otherwise. It also refactors zipimporter_init in the process to make it a bit easier to read and understand. Less reuse of the same variable for multiple purposes and the local path buffer is malloc'ed instead of consuming a large MAXPATHLEN+2 chunk stack space.
* Issue #17721: Remove non-functional configuration dialog help button until weTerry Jan Reedy2014-01-272-4/+8
| | | | make it actually gives some help when clicked. Patch by Guilherme Simões.
* Idlelib.calltips: add test of starred first parameters. They should not beTerry Jan Reedy2014-01-271-0/+10
| | | | removed even for bound methods. (Inspect.signature does, see 20401.)
* Merge heads.Terry Jan Reedy2014-01-272-7/+28
|\
| * Issue #20338: Increase allowed tip width slightly and wrap long signagure lines.Terry Jan Reedy2014-01-272-7/+28
| | | | | | | | Original patch by Serhiy Storchaka.
* | Issue #19990: Added tests for the imghdr module.Serhiy Storchaka2014-01-2614-1/+132
| | | | | | | | Based on patch by Claudiu Popa.
* | Fixed a bug in previous changeset: StreamReader returned '' instead of u''.Serhiy Storchaka2014-01-261-2/+0
| |
* | Issue #8260: The read(), readline() and readlines() methods ofSerhiy Storchaka2014-01-263-8/+45
| | | | | | | | | | codecs.StreamReader returned incomplete data when were called after readline() or read(size). Based on patch by Amaury Forgeot d'Arc.
* | update sphinx urlBenjamin Peterson2014-01-251-2/+2
| |
* | linkifyBenjamin Peterson2014-01-251-3/+4
| |
* | Issue #20331: Fixed possible FD leaks in various modules:Serhiy Storchaka2014-01-255-33/+37
| | | | | | | | SimpleHTTPServer, imghdr, mailcap, mimetypes, xml.etree.
* | update hosting faqBenjamin Peterson2014-01-251-3/+6
| |
* | new plan: just remove typecasts (closes #20374)Benjamin Peterson2014-01-241-4/+4
| |
* | use new readline function types (closes #20374)Benjamin Peterson2014-01-242-3/+5
| |
* | Third attempt to fix test_user_command on OpenSolaris.Serhiy Storchaka2014-01-231-1/+3
| |
* | Other attempt to fix test_user_command on OpenSolaris.Serhiy Storchaka2014-01-231-9/+15
| |