Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | use Py_ssize_t for file offset and length computations in iteration (closes ↵ | Benjamin Peterson | 2014-10-01 | 1 | -0/+12 | |
| | | | | | | | | #22526) | |||||
| * | #22512: move distutils rpm test's .rpmdb to testing tmpdir. | R David Murray | 2014-10-01 | 1 | -0/+3 | |
| | | | | | | | | Patch by Francis MB. | |||||
| * | Move Doc/tools/sphinxext content to Doc/tools, there is no need for the ↵ | Georg Brandl | 2014-09-30 | 1 | -1/+1 | |
| | | | | | | | | nested subdirectory anymore. | |||||
| * | clear BufferedRWPair weakrefs on deallocation (closes #22517) | Benjamin Peterson | 2014-09-30 | 1 | -0/+6 | |
| | | ||||||
| * | give exception a nice message (closes #22379) | Benjamin Peterson | 2014-09-28 | 3 | -21/+15 | |
| | | | | | | | | Patch by Yongzhi Pan. | |||||
| * | #10510: make distuitls upload/register use HTML standards compliant CRLF. | R David Murray | 2014-09-27 | 2 | -6/+5 | |
| | | | | | | | | Patch by Ian Cordasco, approved by Éric Araujo. | |||||
| * | Issue #9850: Fixed macpath.join() for empty first component. Patch by | Serhiy Storchaka | 2014-09-27 | 2 | -1/+21 | |
| | | | | | | | | Oleg Oshmyan. | |||||
| * | tempfile: Fix docstring. Issue #21397, patch by R. David Murray. | Yury Selivanov | 2014-09-26 | 1 | -4/+4 | |
| | | ||||||
| * | Issue #20912: Now directories added to ZIP file have correct Unix and MS-DOS | Serhiy Storchaka | 2014-09-23 | 2 | -4/+46 | |
| | | | | | | | | directory attributes. | |||||
| * | Fixed test_large_file_exception. Ported tests for large count of files | Serhiy Storchaka | 2014-09-23 | 1 | -1/+58 | |
| | | | | | | | | to TestZip64InSmallFiles. | |||||
| * | Issue #21866: ZipFile.close() no longer writes ZIP64 central directory | Serhiy Storchaka | 2014-09-23 | 2 | -14/+60 | |
| | | | | | | | | records if allowZip64 is false. | |||||
| * | Issue #22423: Fixed debugging output of the GROUPREF_EXISTS opcode in the re | Serhiy Storchaka | 2014-09-21 | 2 | -24/+50 | |
| | | | | | | | | module. | |||||
| * | Issue #22423: Unhandled exception in thread no longer causes unhandled | Serhiy Storchaka | 2014-09-21 | 2 | -4/+83 | |
| | | | | | | | | AttributeError when sys.stderr is None. | |||||
| * | Update Idle's online doc url. | Terry Jan Reedy | 2014-09-20 | 1 | -1/+1 | |
| | | ||||||
| * | Issue #22420: Avoid 'write to None' crashes by using print instead. | Terry Jan Reedy | 2014-09-20 | 2 | -35/+35 | |
| | | | | | | | | | | For 2,.7, add print_function __future__ import and convert print statements to print functions. Based on 3.x patch by Serhiy Storchaka. | |||||
| * | Issue #22419: Limit the length of incoming HTTP request in wsgiref server to ↵ | Senthil Kumaran | 2014-09-17 | 2 | -1/+13 | |
| | | | | | | | | 65536 bytes. | |||||
| * | Lax cookie parsing in http.cookies could be a security issue when | Guido van Rossum | 2014-09-16 | 2 | -1/+11 | |
| | | | | | | | | | | | | combined with non-standard cookie handling in some Web browsers. Reported by Sergey Bobrov. | |||||
| * | Test re pickling for all protocols. | Serhiy Storchaka | 2014-09-15 | 1 | -3/+6 | |
| | | ||||||
| * | Issue #22384: An exception in Tkinter callback no longer crashes the program | Serhiy Storchaka | 2014-09-14 | 1 | -2/+5 | |
| | | | | | | | | | | | | | | when it is run with pythonw.exe. Documented that Tk.report_callback_exception() is purposed to be overriden in applications. | |||||
| * | Now re tests work again on Unicode-disabled build. | Serhiy Storchaka | 2014-09-14 | 2 | -48/+53 | |
| | | | | | | | | Simplified existing detections of Unicode-disabled build. | |||||
| * | Use more appropriate asserts in re tests. | Serhiy Storchaka | 2014-09-14 | 1 | -59/+59 | |
| | | ||||||
| * | test_distutils: remove the test file in DistributionTestCase.test_debug_mode() | Victor Stinner | 2014-09-11 | 1 | -1/+2 | |
| | | | | | | | | Fix the warning: "test_support.TESTFN was modified by test_distutils". | |||||
| * | Issue #21147: sqlite3 now raises an exception if the request contains a null | Serhiy Storchaka | 2014-09-11 | 1 | -0/+10 | |
| | | | | | | | | character instead of truncate it. Based on patch by Victor Stinner. | |||||
| * | Issue #21951: Fixed a crash in Tkinter on AIX when called Tcl command with | Serhiy Storchaka | 2014-09-11 | 1 | -1/+2 | |
| | | | | | | | | | | | | | | empty string or tuple argument. On some platforms Tcl memory allocator returns NULL when allocating zero-sized block of memory. | |||||
| * | Issue #22226: Added private function _splitdict() in the Tkinter module. | Serhiy Storchaka | 2014-09-06 | 4 | -93/+113 | |
| | | | | | | | | | | First letter no longer is stripped from the "status" key in the result of Treeview.heading(). | |||||
| * | Issue #22131: Fixed a bug in handling an error occured during reading from | Serhiy Storchaka | 2014-09-06 | 1 | -3/+1 | |
| | | | | | | | | a pipe in _ipconfig_getnode(). | |||||
| * | Issue #22340: Fix test_collections if the sets module was already imported | Victor Stinner | 2014-09-05 | 1 | -2/+2 | |
| | | ||||||
| * | Issue #22340: Fix Python 3 warnings in Python 2 tests | Victor Stinner | 2014-09-05 | 8 | -38/+63 | |
| | | ||||||
| * | regrtest: backport "[ 1/399]" progress back from Python 3 | Victor Stinner | 2014-09-05 | 1 | -4/+15 | |
| | | | | | | | | | | The progress bar helps a lot to analyze noisy buildbot logs, to find quickly where errors occurred. | |||||
| * | Issue #22221: Backported fixes from Python 3 (issue #18960). | Serhiy Storchaka | 2014-09-05 | 3 | -1/+22 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | * Now the source encoding declaration on the second line isn't effective if the first line contains anything except a comment. This affects compile(), eval() and exec() too. * IDLE now ignores the source encoding declaration on the second line if the first line contains anything except a comment. * 2to3 and the findnocoding.py script now ignore the source encoding declaration on the second line if the first line contains anything except a comment. | |||||
| * | Issue #20421: Add a .version() method to SSL sockets exposing the actual ↵ | Alex Gaynor | 2014-09-04 | 2 | -20/+56 | |
| | | | | | | | | | | | | protocol version in use. Backport from default. | |||||
| * | don't index outside of the path (closes #22312) | Benjamin Peterson | 2014-08-31 | 2 | -1/+2 | |
| | | ||||||
| * | #22215: have the smtplib 'quit' command reset the state. | R David Murray | 2014-08-30 | 2 | -0/+19 | |
| | | | | | | | | | | | | | | | | | | | | | | Without this reset, starttls would fail if a connect/starttls was done after a quit, because smtplib assumed the existing value of emspt_features was accurate, but it gets reset when starttls completes (and the new value does not contain the starttls capability, since tls is already started at that point). (There may be additional places where this lack of reset was an issue as well.) Patch by Milan Oberkirch. | |||||
| * | PEP 466: backport hashlib algorithm constants (closes #21307) | Benjamin Peterson | 2014-08-28 | 2 | -3/+20 | |
| | | ||||||
| * | fix load_verify_locations on unicode paths (closes #22244) | Benjamin Peterson | 2014-08-28 | 1 | -0/+3 | |
| | | ||||||
| * | properly handle file closing in error cases (closes #22266) | Benjamin Peterson | 2014-08-28 | 1 | -29/+48 | |
| | | ||||||
| * | Issue 22090: Fix '%' formatting for infinities and NaNs. | Stefan Krah | 2014-08-26 | 2 | -0/+7 | |
| | | ||||||
| * | allow test to work on implementations not using ref-counting (closes #22265) | Benjamin Peterson | 2014-08-24 | 1 | -0/+1 | |
| | | ||||||
| * | fix some test_weakref tests to not rely on ref-counting (closes #22267) | Benjamin Peterson | 2014-08-24 | 1 | -0/+2 | |
| | | ||||||
| * | don't segfault when trying to fdopen() a fd for a dir (closes #22259) | Benjamin Peterson | 2014-08-24 | 1 | -0/+12 | |
| | | | | | | | | Patch from Brian Kearns. | |||||
| * | Issue #22236: Tkinter tests now don't reuse default root window. New root | Serhiy Storchaka | 2014-08-24 | 13 | -264/+224 | |
| | | | | | | | | | | | | | | | | | | window is created for every test class. Fixed Tkinter images copying operations in NoDefaultRoot mode. Tcl command names generated for "after" callbacks now contains a name of original function. | |||||
| * | Merge heads. | Terry Jan Reedy | 2014-08-23 | 1 | -1/+0 | |
| |\ | ||||||
| | * | Idle ColorDelegator: finish removing code for 'as'. | Terry Jan Reedy | 2014-08-19 | 1 | -1/+0 | |
| | | | ||||||
| * | | Issue #22199: Make get_makefile_filename() available in Lib/sysconfig.py | Ned Deily | 2014-08-22 | 2 | -2/+14 | |
| | | | | | | | | | | | | for 2.7 to match other versions of sysconfig. | |||||
| * | | Issue #22191: Fix warnings.__all__. | Brett Cannon | 2014-08-22 | 3 | -2/+22 | |
| | | | | | | | | | | | | Thanks to Jon Poler for the patch. | |||||
| * | | Import Tkinter as tkinter to help merging and avoid backporting errors. | Serhiy Storchaka | 2014-08-21 | 9 | -214/+214 | |
| | | | ||||||
| * | | Issue #1730136: Fix backported exception name. | Ned Deily | 2014-08-21 | 1 | -1/+1 | |
| | | | ||||||
| * | | expect socket.error instead of the py3ism OSError | Benjamin Peterson | 2014-08-20 | 1 | -1/+1 | |
| | | | ||||||
| * | | allow any socket error for rude shutdown test | Benjamin Peterson | 2014-08-20 | 1 | -1/+1 | |
| | | | ||||||
| * | | backport many ssl features from Python 3 (closes #21308) | Benjamin Peterson | 2014-08-20 | 19 | -809/+3636 | |
| | | | | | | | | | | | | | | | A contribution of Alex Gaynor and David Reid with the generous support of Rackspace. May God have mercy on their souls. |