summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* close 3.13.1Benjamin Peterson2014-10-150-0/+0
|
* fix poor spellingBenjamin Peterson2014-04-141-1/+1
|
* disallow a negative idx parameterBenjamin Peterson2014-04-141-4/+5
|
* in scan_once, prevent the reading of arbitrary memory when passed a negative ↵Benjamin Peterson2014-04-144-1/+12
| | | | | | index Bug reported by Guido Vranken.
* use ssl.PROTOCOL_SSLv23 for maximum compatibility (closes #20896)Benjamin Peterson2014-03-121-3/+8
|
* Issue #20246: Fix test failures on FreeBSD. Patch by Ryan Smith-Roberts.Stefan Krah2014-01-211-1/+1
|
* open retrieved file in binary mode, since it's now compressedBenjamin Peterson2014-02-201-3/+3
|
* update logo url (#20695)Benjamin Peterson2014-02-201-1/+1
|
* complain when nbytes > buflen to fix possible buffer overflow (closes #20246)Benjamin Peterson2014-01-144-0/+17
|\
| * complain when nbytes > buflen to fix possible buffer overflow (closes #20246)Benjamin Peterson2014-01-144-0/+17
| |
| * Fix typo. Pointed out by Finn Ellis on docs@.Zachary Ware2014-01-141-1/+1
| |
| * #20236: Fix sphinx markup.R David Murray2014-01-131-1/+1
| |
| * Backported test for the open of non-existent tarfile.Serhiy Storchaka2014-01-131-0/+8
| |
| * Fixed typo.Serhiy Storchaka2014-01-131-2/+2
| |
| * Issue #19082: Working SimpleXMLRPCServer and xmlrpclib examples, both in ↵Senthil Kumaran2014-01-134-11/+40
| | | | | | | | modules and documentation.
| * Issue #20138: Backport tests for handling non-ASCII URLs in theSerhiy Storchaka2014-01-121-0/+6
| | | | | | | | wsgiref.application_uri() and wsgiref.request_uri() functions.
| * Adding test coverage for cgi.FieldStorage based on the scenario mentioned in ↵Senthil Kumaran2014-01-121-0/+10
| | | | | | | | issue #19097
| * tkinter.Text.debug() now always returns 0/1.Serhiy Storchaka2014-01-112-4/+3
| | | | | | | | Fixed regression inroduced in issue #6157.
| * Try to fix some ttk tests. Error messages were changed in 8.6b3.Serhiy Storchaka2014-01-101-3/+3
| |
| * Fixed test_tempfilepager in test_pydoc on Windows.Serhiy Storchaka2014-01-101-2/+3
| | | | | | | | | | Filename such as r'c:\users\db3l\appdata\local\temp\tmph3vkvf' contains '\t' which is interpreted by ast.literal_eval() as a tabulation.
| * Issue #20086: Output more details when test_getsetlocale_issue1813 is failed.Serhiy Storchaka2014-01-101-1/+6
| |
| * Issue #19804: The test_find_mac test in test_uuid is now skipped if theSerhiy Storchaka2014-01-102-0/+14
| | | | | | | | ifconfig executable is not available.
| * Issue #19886: Use better estimated memory requirements for bigmem tests.Serhiy Storchaka2014-01-103-20/+12
| | | | | | | | Incorrect requirements can cause memory swapping.
| * Issue #13107: argparse and optparse no longer raises an exception when outputSerhiy Storchaka2014-01-096-6/+103
| | | | | | | | | | a help on environment with too small COLUMNS. Based on patch by Elazar Gershuni.
| * Issue #20207: Always disable SSLv2 except when PROTOCOL_SSLv2 is explicitly ↵Antoine Pitrou2014-01-093-3/+9
| | | | | | | | asked for.
| * clear zip stat cache after each ref leak runBenjamin Peterson2014-01-092-7/+8
| |
| * fix zipimport ref leakBenjamin Peterson2014-01-091-3/+1
| |
| * Fix verb tense.R David Murray2014-01-081-1/+1
| |
| * cleanup for the issue 19081 fix - pull the file open and close outside of theGregory P. Smith2014-01-081-8/+8
| | | | | | | | | | zip_searchorder scanning loop in get_module_code(). [already done in 3.3 and 3.4]
| * Issue #20072: Fixed multiple errors in tkinter with wantobjects is False.Serhiy Storchaka2014-01-077-75/+156
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Misc.image_names(), Misc.image_types(), Wm.wm_colormapwindows(), and LabelFrame.panes() now always return a tuple. * Fixed _stringify() for non-ASCII strings. * Fixed error of comparing str and int in tt.LabeledScale._adjust(). * ttk.Notebook.index() now always returns int. * ttk.Notebook.tabs() now always returns a tuple. * ttk.Entry.bbox() now always returns a tuple of ints. * ttk.Entry.validate() now always correctly works. * ttk.Combobox.current() now always returns int. * ttk.Panedwindow.sashpos() now always returns int. * ttk.Treeview.bbox() now always returns a tuple of ints. * ttk.Treeview.get_children() now always returns a tuple. * ttk.Treeview.exists() now always correctly works. * ttk.Treeview.index() now always returns int. * ttk.Treeview.tag_has() now always returns 0 or 1. * And numerous other errors in methods which returns a tuple, list or dict. * Fixed ttk tests for wantobjects is False.
| * Should fix the issue19081 fix on Windows. Don't let the previousGregory P. Smith2014-01-071-1/+4
| | | | | | | | posix module ImportError cause the nt module import to fail.
| * normalize whitespace from prior issue19081 fix commit.Gregory P. Smith2014-01-061-3/+3
| |
| * news entry for issue19081 fix.Gregory P. Smith2014-01-061-0/+5
| |
| * Fixes issue19081: When a zipimport .zip file in sys.path being importedGregory P. Smith2014-01-062-73/+324
| | | | | | | | | | | | | | | | | | | | | | | | | | from is modified during the lifetime of the Python process after zipimport has already opened and cached the zip's table of contents it now fstat's the file after opening it upon every attempt to access anything within and will re-read the table of contents if the .zip file inode, size or mtime have changed. It would've been nicer to hold any .zip file used by zipimport open for the duration of the process but that would be more invasive and add an additional open file descriptor to all zipimport using processes. It also would likely not fix the problem on Windows due to different filesystem semantics.
| * #1065986: add missing error handler in pydoc unicode fix.R David Murray2014-01-051-1/+3
| |
| * #1065986: Make pydoc handle unicode strings.R David Murray2014-01-053-14/+137
| | | | | | | | Patch by Akira Kitada.
| * #16039/#20118: temporarily skip failing imaplib SSL test.R David Murray2014-01-031-0/+3
| | | | | | | | | | | | The fix the test is testing prevents a DOS attack, and the failure mode will also prevent the DOS attack, so for now skip the test. Either the test or the code does need fixing, however.
| * closes 16039: CVE-2013-1752: limit line length in imaplib readline calls.R David Murray2014-01-033-1/+26
| |
| * #17282: Document unittest.main defaultTest argument.R David Murray2014-01-021-0/+4
| |
| * Update copyright dates in Mac plists.Ned Deily2014-01-014-7/+7
| |
| * update copyright yearBenjamin Peterson2014-01-017-7/+7
| |
| * complain if the codec doesn't return unicodeBenjamin Peterson2013-12-284-0/+16
| |
| * Issue #19422: Explicitly disallow non-SOCK_STREAM sockets in the ssl module, ↵Antoine Pitrou2013-12-284-7/+25
| | | | | | | | rather than silently let them emit clear text data.
| * Fixed the wave module testing on big-endian platforms.Serhiy Storchaka2013-12-281-1/+1
| | | | | | | | array.fromfile() works only with file objects, not io.FileIO instances.
| * Issue #20027: Fixed locale aliases for devanagari locales.Serhiy Storchaka2013-12-264-3/+26
| |
| * Backported tests for Tkinter variables.Serhiy Storchaka2013-12-262-0/+154
| |
| * Issue #20067: Tkinter variables now work when wantobjects is false.Serhiy Storchaka2013-12-262-2/+6
| |
| * #20063: Remove inaccurate/confusing statement about support of 'pop' method.R David Murray2013-12-261-3/+2
| | | | | | | | Patch by Gennadiy Zlobin.
| * test_debug in test_tkinter/test_text no longer fails when wantobjects is false.Serhiy Storchaka2013-12-251-2/+3
| |
| * Issue #19320: test_tcl no longer fails when wantobjects is false.Serhiy Storchaka2013-12-252-15/+32
| |