Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #26581: Use the first coding cookie on a line, not the last one. | Serhiy Storchaka | 2016-03-20 | 8 | -6/+10 |
|\ | |||||
| * | Issue #26581: Use the first coding cookie on a line, not the last one. | Serhiy Storchaka | 2016-03-20 | 8 | -6/+10 |
| | | |||||
* | | Issues #25643, #26581: Added new tests for detecting Python source code ↵ | Serhiy Storchaka | 2016-03-20 | 1 | -2/+81 |
|\ \ | |/ | | | | | encoding. | ||||
| * | Added new tests for detecting Python source code encoding. | Serhiy Storchaka | 2016-03-20 | 1 | -2/+81 |
| | | |||||
* | | Issue #12813: uuid.uuid4() no longer depends on ctypes | Berker Peksag | 2016-03-20 | 1 | -1/+0 |
|\ \ | |/ | | | | | uuid.uuid4() always uses os.urandom() after 756d040aa8e8. | ||||
| * | Issue #12813: uuid.uuid4() no longer depends on ctypes | Berker Peksag | 2016-03-20 | 1 | -1/+0 |
| | | | | | | | | uuid.uuid4() always uses os.urandom() after 756d040aa8e8. | ||||
* | | Issue #19164: Improve exception message of uuid.UUID() | Berker Peksag | 2016-03-20 | 1 | -1/+2 |
|\ \ | |/ | | | | | Patch by jgauthier. | ||||
| * | Issue #19164: Improve exception message of uuid.UUID() | Berker Peksag | 2016-03-20 | 1 | -1/+2 |
| | | | | | | | | Patch by jgauthier. | ||||
* | | Issue #26593: Fix typo in logging HOWTO | Berker Peksag | 2016-03-20 | 1 | -1/+1 |
|\ \ | |/ | | | | | Patch by Andrew Szeto. | ||||
| * | Issue #26593: Fix typo in logging HOWTO | Berker Peksag | 2016-03-20 | 1 | -1/+1 |
| | | | | | | | | Patch by Andrew Szeto. | ||||
* | | Issue #19265: Improve test coverage of datetime.tzinfo | Berker Peksag | 2016-03-19 | 1 | -0/+3 |
|\ \ | |/ | | | | | | | | | | | Without the patch, line 1010 of Lib/datetime.py wasn't covered by the test suite. Patch by Colin Williams. | ||||
| * | Issue #19265: Improve test coverage of datetime.tzinfo | Berker Peksag | 2016-03-19 | 1 | -0/+3 |
| | | | | | | | | | | | | | | Without the patch, line 1010 of Lib/datetime.py wasn't covered by the test suite. Patch by Colin Williams. | ||||
* | | Issue #18787: spwd.getspnam() now raises a PermissionError if the user | Berker Peksag | 2016-03-19 | 5 | -1/+22 |
| | | | | | | | | doesn't have privileges. | ||||
* | | fix indentation in Py_DECREF() | Victor Stinner | 2016-03-19 | 1 | -1/+1 |
| | | |||||
* | | Issue #26567: enhance ResourceWarning example | Victor Stinner | 2016-03-19 | 1 | -9/+12 |
| | | |||||
* | | Try again to fix test_warnings on Windows | Victor Stinner | 2016-03-19 | 1 | -0/+2 |
| | | | | | | | | Issue #26567: normalize newlines in test_tracemalloc. | ||||
* | | Issue #26560: Avoid potential ValueError in BaseHandler.start_response | Berker Peksag | 2016-03-19 | 3 | -1/+25 |
|\ \ | |/ | | | | | Initial patch by Peter Inglesby. | ||||
| * | Issue #26560: Avoid potential ValueError in BaseHandler.start_response | Berker Peksag | 2016-03-19 | 3 | -1/+25 |
| | | | | | | | | Initial patch by Peter Inglesby. | ||||
* | | Try to fix test_warnings on Windows | Victor Stinner | 2016-03-19 | 1 | -8/+10 |
| | | | | | | | | Issue #26567. | ||||
* | | ResourceWarning: Revert change on socket and scandir | Victor Stinner | 2016-03-19 | 2 | -3/+4 |
| | | | | | | | | io.FileIO has a safe implementation of destructor, but not socket nor scandir. | ||||
* | | Fix test_logging | Victor Stinner | 2016-03-19 | 1 | -27/+33 |
| | | | | | | | | | | Issue #26568: Fix implementation of showwarning() and formatwarning() for test_logging. | ||||
* | | On ResourceWarning, log traceback where the object was allocated | Victor Stinner | 2016-03-19 | 11 | -40/+175 |
| | | | | | | | | | | | | | | | | | | | | Issue #26567: * Add a new function PyErr_ResourceWarning() function to pass the destroyed object * Add a source attribute to warnings.WarningMessage * Add warnings._showwarnmsg() which uses tracemalloc to get the traceback where source object was allocated. | ||||
* | | Add _showwarnmsg() and _formatwarnmsg() to warnings | Victor Stinner | 2016-03-18 | 3 | -41/+117 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | Issue #26568: add new _showwarnmsg() and _formatwarnmsg() functions to the warnings module. The C function warn_explicit() now calls warnings._showwarnmsg() with a warnings.WarningMessage as parameter, instead of calling warnings.showwarning() with multiple parameters. _showwarnmsg() calls warnings.showwarning() if warnings.showwarning() was replaced. Same for _formatwarnmsg(): call warnings.formatwarning() if it was replaced. | ||||
* | | Merge for issue #26095 | Brett Cannon | 2016-03-18 | 1 | -0/+46 |
|\ \ | |/ | |||||
| * | Suggest people use feature detection in porting guide | Brett Cannon | 2016-03-18 | 1 | -0/+46 |
| | | |||||
* | | Issue #26252: Add an example on how to register a finder | Brett Cannon | 2016-03-18 | 1 | -2/+32 |
| | | |||||
* | | #26250: merge with 3.5. | Ezio Melotti | 2016-03-18 | 2 | -0/+13 |
|\ \ | |/ | |||||
| * | #26250: document the sqlite3.Cursor.connection attribute. Initial patches ↵ | Ezio Melotti | 2016-03-18 | 2 | -0/+13 |
| | | | | | | | | by Aviv Palivoda and Varpu Rantala. | ||||
* | | Merge for issue #26271 | Brett Cannon | 2016-03-18 | 3 | -2/+6 |
|\ \ | |/ | |||||
| * | Issue #26271: Fix the Freeze tool to use variables passed in from the | Brett Cannon | 2016-03-18 | 3 | -2/+6 |
| | | | | | | | | | | | | configure script related to compiler flags. Thanks to Daniel Shaulov for the bug report and patch. | ||||
* | | Doc: fix typos, patch written by Stefan Behnel | Victor Stinner | 2016-03-18 | 3 | -6/+6 |
| | | |||||
* | | Fixed a typo. | Serhiy Storchaka | 2016-03-18 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Fixed a typo. | Serhiy Storchaka | 2016-03-18 | 1 | -1/+1 |
| | | |||||
* | | Issue #26580: Remove outdated reference to ftpmirror | Berker Peksag | 2016-03-18 | 1 | -6/+0 |
|\ \ | |/ | | | | | Patch by SilentGhost. | ||||
| * | Issue #26580: Remove outdated reference to ftpmirror | Berker Peksag | 2016-03-18 | 1 | -6/+0 |
| | | | | | | | | Patch by SilentGhost. | ||||
* | | Enhance documentation on malloc debug hooks | Victor Stinner | 2016-03-18 | 3 | -11/+20 |
| | | | | | | | | Issue #26564, #26516, #26563. | ||||
* | | Issue #26313: ssl.py _load_windows_store_certs fails if windows cert store ↵ | Steve Dower | 2016-03-17 | 2 | -1/+5 |
|\ \ | |/ | | | | | is empty. Patch by Baji. | ||||
| * | Issue #26313: ssl.py _load_windows_store_certs fails if windows cert store ↵ | Steve Dower | 2016-03-17 | 2 | -1/+5 |
| | | | | | | | | is empty. Patch by Baji. | ||||
* | | Issue #26583: merge from 3.5 | Ned Deily | 2016-03-17 | 2 | -0/+4 |
|\ \ | |/ | |||||
| * | Issue #26583: Skip test_timestamp_overflow in test_import if bytecode | Ned Deily | 2016-03-17 | 2 | -0/+4 |
| | | | | | | | | files cannot be written. | ||||
* | | Merge 3.5 into default | Donald Stufft | 2016-03-17 | 3 | -2/+2 |
|\ \ | |/ | |||||
| * | Merge 3.4 into 3.5 | Donald Stufft | 2016-03-17 | 3 | -2/+2 |
| |\ | |||||
| | * | Upgrade ensurepip._bundled pip to 8.1.1 and setuptools to 20.3 | Donald Stufft | 2016-03-17 | 3 | -2/+2 |
| | | | |||||
* | | | Merge 3.5 | Victor Stinner | 2016-03-17 | 2 | -3/+8 |
|\ \ \ | |/ / | |||||
| * | | Fix pyclbr to support importing packages | Victor Stinner | 2016-03-17 | 2 | -3/+8 |
| | | | | | | | | | | | | | | | Issue #26569: Fix pyclbr.readmodule() and pyclbr.readmodule_ex() to support importing packages. | ||||
* | | | Issue #17603: Merge configure.ac fix from 3.5 | Martin Panter | 2016-03-18 | 4 | -15/+4 |
|\ \ \ | |/ / | |||||
| * | | Issue #17603: Check for st_blocks field without requiring fileblocks.o | Martin Panter | 2016-03-18 | 4 | -15/+4 |
| | | | |||||
* | | | Null merge 3.5 | Victor Stinner | 2016-03-17 | 0 | -0/+0 |
|\ \ \ | |/ / | |||||
| * | | Py_FatalError: disable faulthandler earlier | Victor Stinner | 2016-03-16 | 1 | -5/+5 |
| | | | | | | | | | | | | | | | Issue #26563: Py_FatalError: disable faulthandler before trying to flush sys.stdout and sys.stderr. | ||||
* | | | Null merge 3.5 | Victor Stinner | 2016-03-16 | 0 | -0/+0 |
|\ \ \ | |/ / |