| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | in scan_once, prevent the reading of arbitrary memory when passed a negative ↵ | Benjamin Peterson | 2014-04-14 | 1 | -0/+4 |
| | | | | | | | index Bug reported by Guido Vranken. | ||||
| * | use ssl.PROTOCOL_SSLv23 for maximum compatibility (closes #20896) | Benjamin Peterson | 2014-03-12 | 1 | -3/+8 |
| | | |||||
| * | Issue #20246: Fix test failures on FreeBSD. Patch by Ryan Smith-Roberts. | Stefan Krah | 2014-01-21 | 1 | -1/+1 |
| | | |||||
| * | open retrieved file in binary mode, since it's now compressed | Benjamin Peterson | 2014-02-20 | 1 | -3/+3 |
| | | |||||
| * | update logo url (#20695) | Benjamin Peterson | 2014-02-20 | 1 | -1/+1 |
| | | |||||
| * | complain when nbytes > buflen to fix possible buffer overflow (closes #20246) | Benjamin Peterson | 2014-01-14 | 1 | -0/+8 |
| |\ | |||||
| | * | complain when nbytes > buflen to fix possible buffer overflow (closes #20246) | Benjamin Peterson | 2014-01-14 | 1 | -0/+10 |
| | | | |||||
| | * | Backported test for the open of non-existent tarfile. | Serhiy Storchaka | 2014-01-13 | 1 | -0/+8 |
| | | | |||||
| | * | Fixed typo. | Serhiy Storchaka | 2014-01-13 | 1 | -2/+2 |
| | | | |||||
| | * | Issue #19082: Working SimpleXMLRPCServer and xmlrpclib examples, both in ↵ | Senthil Kumaran | 2014-01-13 | 2 | -11/+5 |
| | | | | | | | | | modules and documentation. | ||||
| | * | Issue #20138: Backport tests for handling non-ASCII URLs in the | Serhiy Storchaka | 2014-01-12 | 1 | -0/+6 |
| | | | | | | | | | wsgiref.application_uri() and wsgiref.request_uri() functions. | ||||
| | * | Adding test coverage for cgi.FieldStorage based on the scenario mentioned in ↵ | Senthil Kumaran | 2014-01-12 | 1 | -0/+10 |
| | | | | | | | | | issue #19097 | ||||
| | * | tkinter.Text.debug() now always returns 0/1. | Serhiy Storchaka | 2014-01-11 | 2 | -4/+3 |
| | | | | | | | | | Fixed regression inroduced in issue #6157. | ||||
| | * | Try to fix some ttk tests. Error messages were changed in 8.6b3. | Serhiy Storchaka | 2014-01-10 | 1 | -3/+3 |
| | | | |||||
| | * | Fixed test_tempfilepager in test_pydoc on Windows. | Serhiy Storchaka | 2014-01-10 | 1 | -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 Storchaka | 2014-01-10 | 1 | -1/+6 |
| | | | |||||
| | * | Issue #19804: The test_find_mac test in test_uuid is now skipped if the | Serhiy Storchaka | 2014-01-10 | 1 | -0/+11 |
| | | | | | | | | | ifconfig executable is not available. | ||||
| | * | Issue #19886: Use better estimated memory requirements for bigmem tests. | Serhiy Storchaka | 2014-01-10 | 2 | -20/+10 |
| | | | | | | | | | Incorrect requirements can cause memory swapping. | ||||
| | * | Issue #13107: argparse and optparse no longer raises an exception when output | Serhiy Storchaka | 2014-01-09 | 4 | -6/+98 |
| | | | | | | | | | | | 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 Pitrou | 2014-01-09 | 1 | -1/+1 |
| | | | | | | | | | asked for. | ||||
| | * | clear zip stat cache after each ref leak run | Benjamin Peterson | 2014-01-09 | 2 | -7/+8 |
| | | | |||||
| | * | Issue #20072: Fixed multiple errors in tkinter with wantobjects is False. | Serhiy Storchaka | 2014-01-07 | 6 | -75/+154 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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. | ||||
| | * | normalize whitespace from prior issue19081 fix commit. | Gregory P. Smith | 2014-01-06 | 1 | -3/+3 |
| | | | |||||
| | * | Fixes issue19081: When a zipimport .zip file in sys.path being imported | Gregory P. Smith | 2014-01-06 | 1 | -20/+83 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 Murray | 2014-01-05 | 1 | -1/+3 |
| | | | |||||
| | * | #1065986: Make pydoc handle unicode strings. | R David Murray | 2014-01-05 | 2 | -14/+135 |
| | | | | | | | | | Patch by Akira Kitada. | ||||
| | * | #16039/#20118: temporarily skip failing imaplib SSL test. | R David Murray | 2014-01-03 | 1 | -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 Murray | 2014-01-03 | 2 | -1/+23 |
| | | | |||||
| | * | complain if the codec doesn't return unicode | Benjamin Peterson | 2013-12-28 | 2 | -0/+7 |
| | | | |||||
| | * | Issue #19422: Explicitly disallow non-SOCK_STREAM sockets in the ssl module, ↵ | Antoine Pitrou | 2013-12-28 | 2 | -0/+12 |
| | | | | | | | | | rather than silently let them emit clear text data. | ||||
| | * | Fixed the wave module testing on big-endian platforms. | Serhiy Storchaka | 2013-12-28 | 1 | -1/+1 |
| | | | | | | | | | array.fromfile() works only with file objects, not io.FileIO instances. | ||||
| | * | Issue #20027: Fixed locale aliases for devanagari locales. | Serhiy Storchaka | 2013-12-26 | 2 | -3/+18 |
| | | | |||||
| | * | Backported tests for Tkinter variables. | Serhiy Storchaka | 2013-12-26 | 1 | -0/+152 |
| | | | |||||
| | * | Issue #20067: Tkinter variables now work when wantobjects is false. | Serhiy Storchaka | 2013-12-26 | 1 | -2/+4 |
| | | | |||||
| | * | test_debug in test_tkinter/test_text no longer fails when wantobjects is false. | Serhiy Storchaka | 2013-12-25 | 1 | -2/+3 |
| | | | |||||
| | * | Issue #19320: test_tcl no longer fails when wantobjects is false. | Serhiy Storchaka | 2013-12-25 | 1 | -15/+30 |
| | | | |||||
| | * | Issue #19020: Tkinter now uses splitlist() instead of split() in configure | Serhiy Storchaka | 2013-12-25 | 3 | -55/+32 |
| | | | | | | | | | methods. | ||||
| | * | Issue #20058: sys.stdin.readline() in IDLE now always returns only one line. | Serhiy Storchaka | 2013-12-25 | 1 | -0/+3 |
| | | | |||||
| | * | Issue #12226: HTTPS is now used by default when connecting to PyPI. | Antoine Pitrou | 2013-12-22 | 3 | -5/+5 |
| | | | |||||
| | * | Issue #20048: Fixed ZipExtFile.peek() when it is called on the boundary of | Serhiy Storchaka | 2013-12-21 | 1 | -1/+5 |
| | | | | | | | | | | | | | the uncompress buffer and read() goes through more than one readbuffer. This is partial backport of changeset 028e8e0b03e8. | ||||
| | * | Issue #20034: Updated alias mapping to most recent locale.alias file | Serhiy Storchaka | 2013-12-20 | 1 | -11/+43 |
| | | | | | | | | | from X.org distribution using makelocalealias.py. | ||||
| | * | Merge heads | Serhiy Storchaka | 2013-12-19 | 1 | -69/+0 |
| | |\ | |||||
| | | * | Issue #19683: Removed empty tests from test_minidom. | Zachary Ware | 2013-12-19 | 1 | -69/+0 |
| | | | | | | | | | | | | | Initial patch by Ajitesh Gupta. | ||||
| | * | | Don't use sebTest() in tests for issue #5815. | Serhiy Storchaka | 2013-12-19 | 1 | -2/+1 |
| | |/ | |||||
| | * | Issue #5815: Fixed support for locales with modifiers. Fixed support for | Serhiy Storchaka | 2013-12-19 | 2 | -43/+133 |
| | | | | | | | | | locale encodings with hyphens. | ||||
| | * | Issue #20026: Fix the sqlite module to handle correctly invalid isolation level | Victor Stinner | 2013-12-19 | 1 | -0/+5 |
| | | | | | | | | | (wrong type). | ||||
| | * | Issue #18829: csv.Dialect() now checks type for delimiter, escapechar and | Serhiy Storchaka | 2013-12-19 | 1 | -5/+39 |
| | | | | | | | | | quotechar fields. Original patch by Vajrasky Kok. | ||||
| | * | update url to spec (closes #20018) | Benjamin Peterson | 2013-12-18 | 1 | -1/+1 |
| | | | |||||
| | * | Issue #19492: Silently skipped distutils tests now reported as skipped. | Serhiy Storchaka | 2013-12-18 | 10 | -69/+37 |
| | | | |||||
| | * | #19855: uuid.get_node now looks on the PATH for executables on unix. | R David Murray | 2013-12-18 | 1 | -25/+30 |
| | | | | | | | | | Patch by Serhiy Storchaka. | ||||
