Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | | Issue #22928: Disabled HTTP header injections in http.client. | Serhiy Storchaka | 2015-03-12 | 3 | -0/+97 | |
| | | | | | | | | | | | | Original patch by Demian Brecht. | |||||
* | | | Issue #23192: Fixed generator lambdas. Patch by Bruno Cauet. | Serhiy Storchaka | 2015-03-11 | 4 | -2/+25 | |
| | | | ||||||
* | | | Issue #23615: Modules bz2, tarfile and tokenize now can be reloaded with | Serhiy Storchaka | 2015-03-11 | 5 | -6/+7 | |
| | | | | | | | | | | | | imp.reload(). Patch by Thomas Kluyver. | |||||
* | | | Removes unused format string insertion in launcher.c. | Steve Dower | 2015-03-11 | 1 | -1/+1 | |
| | | | ||||||
* | | | Issue #23629: Fix the default __sizeof__ implementation for variable-sized ↵ | Antoine Pitrou | 2015-03-10 | 6 | -29/+22 | |
| | | | | | | | | | | | | objects. | |||||
* | | | Issue #22028: Ensure mimetypes will not open registry keys with embedded nulls | Steve Dower | 2015-03-10 | 1 | -1/+2 | |
| | | | ||||||
* | | | asyncio: Fix repr(BaseSubprocessTransport) if it didn't start yet | Victor Stinner | 2015-03-10 | 1 | -2/+5 | |
| | | | | | | | | | | | | | | | Replace "running" with "not started" and don't show the pid if the subprocess didn't start yet. | |||||
* | | | asyncio doc: changes on the Queue API missed Python 3.4.3 release | Victor Stinner | 2015-03-10 | 1 | -4/+4 | |
| | | | ||||||
* | | | Issue #23432: Remove duplicate content from SystemExit docs. | Berker Peksag | 2015-03-10 | 1 | -13/+13 | |
| | | | | | | | | | | | | Also, document SystemExit.code attribute explicitly. | |||||
* | | | Issue #23605: os.walk() doc now mentions shutil.rmtree() in the last example | Victor Stinner | 2015-03-10 | 1 | -2/+3 | |
| | | | ||||||
* | | | fix up import style | Benjamin Peterson | 2015-03-09 | 1 | -5/+8 | |
| | | | ||||||
* | | | Issue #23617: Correct plurals typo noted by Kentrell Johnson. | Ned Deily | 2015-03-09 | 1 | -1/+1 | |
| | | | ||||||
* | | | indicate correct version (closes #23608) | Benjamin Peterson | 2015-03-08 | 1 | -1/+1 | |
| | | | ||||||
* | | | Issue #21619: Cleaned up test_broken_pipe_cleanup. | Serhiy Storchaka | 2015-03-08 | 1 | -10/+8 | |
| | | | | | | | | | | | | Patch by Martin Panter. | |||||
* | | | Issue #20876: correctly close temporary file in ↵ | Antoine Pitrou | 2015-03-07 | 1 | -10/+9 | |
| | | | | | | | | | | | | test.support.fs_is_case_insensitive() | |||||
* | | | replace Amazon links in the documentation (closes #23579) | Benjamin Peterson | 2015-03-07 | 2 | -4/+4 | |
| | | | | | | | | | | | | Patch by Sayan Chowdhury. | |||||
* | | | Issue #22853: Added regression test for using multiprocessing.Queue at import | Serhiy Storchaka | 2015-03-06 | 1 | -0/+21 | |
| | | | | | | | | | | | | time. Patch by Davin Potts. | |||||
* | | | remove redundant test | Benjamin Peterson | 2015-03-06 | 1 | -5/+0 | |
| | | | ||||||
* | | | fix potential refleak in PyFloat_AsDouble (closes #23590) | Benjamin Peterson | 2015-03-06 | 2 | -0/+7 | |
| | | | ||||||
* | | | Issue #23593: fix Misc/NEWS entries | Ned Deily | 2015-03-06 | 1 | -1/+1 | |
| | | | ||||||
* | | | Issue #23594: Update OS X 10.5 installer build to use OpenSSL 1.0.2. | Ned Deily | 2015-03-06 | 3 | -14/+20 | |
| | | | ||||||
* | | | use _import_symbols to import VERIFY_* constants | Benjamin Peterson | 2015-03-05 | 1 | -2/+1 | |
| | | | ||||||
* | | | adjust test_crl_check for trusted first being default | Benjamin Peterson | 2015-03-05 | 1 | -1/+2 | |
| | | | ||||||
* | | | expose X509_V_FLAG_TRUSTED_FIRST | Benjamin Peterson | 2015-03-05 | 3 | -5/+18 | |
| | | | ||||||
* | | | enable X509_V_FLAG_TRUSTED_FIRST when possible (closes #23476) | Benjamin Peterson | 2015-03-05 | 2 | -0/+12 | |
| | | | ||||||
* | | | Issue #21619: Try to fix test_broken_pipe_cleanup() | Victor Stinner | 2015-03-05 | 1 | -6/+9 | |
| | | | ||||||
* | | | Issue #23576: Avoid stalling in SSL reads when EOF has been reached in the ↵ | Antoine Pitrou | 2015-03-04 | 2 | -20/+3 | |
| | | | | | | | | | | | | SSL layer but the underlying connection hasn't been closed. | |||||
* | | | Issue #23504: Added an __all__ to the types module. | Serhiy Storchaka | 2015-03-04 | 2 | -0/+5 | |
| | | | ||||||
* | | | merge 3.3 (#23362) | Benjamin Peterson | 2015-03-02 | 1 | -1/+1 | |
|\ \ \ | |/ / | ||||||
| * | | use PyMem_NEW to detect overflow (closes #23362) | Benjamin Peterson | 2015-03-02 | 1 | -1/+1 | |
| | | | ||||||
* | | | merge 3.3 (#23367) | Benjamin Peterson | 2015-03-02 | 2 | -3/+12 | |
|\ \ \ | |/ / | ||||||
| * | | fix possible overflow bugs in unicodedata (closes #23367) | Benjamin Peterson | 2015-03-02 | 2 | -3/+12 | |
| | | | ||||||
* | | | Issue #18382: Zero-length messages are consumed by ReadFile on Windows 8 and ↵ | Steve Dower | 2015-03-02 | 1 | -2/+11 | |
| | | | | | | | | | | | | later | |||||
* | | | wrap everything at 80 chars | Benjamin Peterson | 2015-03-02 | 1 | -98/+97 | |
| | | | ||||||
* | | | link to the correct dis method or function (closes #23561) | Benjamin Peterson | 2015-03-02 | 1 | -3/+3 | |
| | | | ||||||
* | | | Added more tests for urllib.parse utility functions. | Serhiy Storchaka | 2015-03-02 | 2 | -69/+129 | |
| | | | | | | | | | | | | These functions are not documented but used in third-party code. | |||||
* | | | Issue #23527: Update Gmail port number for STARTTLS to 587. | Berker Peksag | 2015-03-02 | 1 | -1/+1 | |
| | | | | | | | | | | | | Patch by Alex Shkop. | |||||
* | | | Issue #23477: Improve test coverage of wsgiref.simple_server. | Berker Peksag | 2015-03-02 | 1 | -0/+25 | |
| | | | | | | | | | | | | | | | | | | | | | The test checks that the environ argument contains correct headers, querystring and path information. Patch by Alex Shkop. | |||||
* | | | Issue #20521: Change ``TOS`` to TOS in dis documentation. | Berker Peksag | 2015-03-02 | 1 | -4/+4 | |
| | | | | | | | | | | | | | | | | | | TOS is an abbreviation of top-of-stack. Patch by Sven Berkvens-Matthijsse. | |||||
* | | | Issue #23387: Skip test_issue16464 if it raises an 5xx error. | Berker Peksag | 2015-03-02 | 2 | -21/+13 | |
| | | | | | | | | | | | | | | | Also, remove support.run_doctest() since there is no doctests in test_urllib2 and urllib.request. | |||||
* | | | remove mention of Python 2.2 and 2.3 | Benjamin Peterson | 2015-03-02 | 1 | -6/+5 | |
| | | | ||||||
* | | | Fixed pydoc tests when run with -OO. | Serhiy Storchaka | 2015-03-01 | 1 | -0/+4 | |
| | | | ||||||
* | | | Issue #20204: Added the __module__ attribute to _tkinter classes. | Serhiy Storchaka | 2015-03-01 | 2 | -2/+5 | |
| | | | ||||||
* | | | Fixes #23521: Corrected pure python implementation of timedelta division. | Alexander Belopolsky | 2015-02-28 | 3 | -3/+61 | |
| | | | | | | | | | | | | | | | * Eliminated OverflowError from timedelta * float for some floats; * Corrected rounding in timedlta true division. | |||||
* | | | Fixed a test for issue #21619 on Windows. | Serhiy Storchaka | 2015-02-28 | 1 | -1/+1 | |
| | | | | | | | | | | | | On Windows an OSError with errno=EINVAL is raised. | |||||
* | | | Issue #21619: Popen objects no longer leave a zombie after exit in the with | Serhiy Storchaka | 2015-02-28 | 3 | -4/+24 | |
| | | | | | | | | | | | | statement if the pipe was broken. Patch by Martin Panter. | |||||
* | | | Fix the clarification as to why division cannot be ported automatically | Brett Cannon | 2015-02-27 | 1 | -2/+3 | |
| | | | ||||||
* | | | Fix minor errors in Misc/NEWS. (Thanks for the report, Florian Bruhin!) | Larry Hastings | 2015-02-27 | 1 | -3/+1 | |
| | | | ||||||
* | | | Issue #23537: Remove 2 unused private methods of asyncio.BaseSubprocessTransport | Victor Stinner | 2015-02-27 | 1 | -6/+0 | |
| | | | | | | | | | | | | Methods only raise NotImplementedError and are never used. | |||||
* | | | Issue #23526: Fix ResourceWarning in test_httplib. Patch written by Alex Shkop. | Victor Stinner | 2015-02-27 | 2 | -0/+4 | |
| | | |