Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #26688: Fix module name in mock docs | Berker Peksag | 2016-04-02 | 1 | -3/+3 |
| | | | | Patch by Ashley Anderson. | ||||
* | Issue #26678: Fix indexing of datetime.tzinfo and timezone classes | Martin Panter | 2016-04-01 | 1 | -59/+63 |
| | | | | Also fix links to the “tzinfo” class and attributes. | ||||
* | Added a cookbook recipe for a logging context manager. | Vinay Sajip | 2016-04-01 | 1 | -0/+102 |
| | |||||
* | asyncio: Don't log ConnectionAbortedError | Victor Stinner | 2016-04-01 | 5 | -5/+10 |
| | | | | | Issue #26509: In fatal error handlers, don't log ConnectionAbortedError which occur on Windows. | ||||
* | asyncio: allow None as wait timeout | Victor Stinner | 2016-04-01 | 2 | -6/+24 |
| | | | | | | Fix GH#325: Allow to pass None as a timeout value to disable timeout logic. Change written by Andrew Svetlov and merged by Guido van Rossum. | ||||
* | asyncio: sync overlapped.c with GitHub | Victor Stinner | 2016-04-01 | 1 | -0/+6 |
| | | | | | | | | | | On Python 3.3, use aliases: * PyMem_RawMalloc = PyMem_Malloc * PyMem_RawFree = PyMem_Free These aliases are not need in Python 3.5, but this change makes synchronization of code base simpler. | ||||
* | Issue #22854: Fix logic for skipping test | Martin Panter | 2016-03-31 | 1 | -1/+1 |
| | |||||
* | Remove redundant leading zeroes in PEP references. | Serhiy Storchaka | 2016-03-31 | 6 | -15/+15 |
| | |||||
* | Issue #22854: Skip pipe seek tests on Windows | Martin Panter | 2016-03-31 | 1 | -2/+7 |
| | |||||
* | Issue #22854: Clarify documentation about UnsupportedOperation and add tests | Martin Panter | 2016-03-31 | 6 | -35/+130 |
| | | | | | Also change BufferedReader.writable() and BufferedWriter.readable() to always return False. | ||||
* | Issue #26492: Added additional tests for exhausted iterators of mutable ↵ | Serhiy Storchaka | 2016-03-30 | 3 | -0/+24 |
| | | | | sequences. | ||||
* | Issue #26494: Fixed crash on iterating exhausting iterators. | Serhiy Storchaka | 2016-03-30 | 19 | -22/+92 |
| | | | | | | Affected classes are generic sequence iterators, iterators of str, bytes, bytearray, list, tuple, set, frozenset, dict, OrderedDict, corresponding views and os.scandir() iterator. | ||||
* | Fix typo in xml.dom.pulldom.rst | Berker Peksag | 2016-03-30 | 1 | -1/+3 |
| | | | | Reported by Matthew Cole on docs@p.o. | ||||
* | test_urllibnet: set timeout on test_fileno() | Victor Stinner | 2016-03-30 | 1 | -1/+1 |
| | | | | Use the default timeout of 30 seconds to avoid blocking forever. | ||||
* | Fix ResourceWarning in test_unittest when interrupted | Victor Stinner | 2016-03-29 | 1 | -3/+6 |
| | |||||
* | Issue #25911: Backport os._DummyDirEntry fixes | Victor Stinner | 2016-03-29 | 1 | -2/+36 |
| | | | | | | | | | * Fix test_os.BytesWalkTests on Windows * Mimick better the reference os.DirEntry on Windows * _DummyDirEntry now caches os.stat() result * _DummyDirEntry constructor now tries to get os.stat() * Fix os._DummyDirEntry.is_symlink(), don't follow symbolic links: use os.stat(path, follow_symlinks=False). | ||||
* | Issue #26643: Add missing shutil resources to regrtest.py | Victor Stinner | 2016-03-29 | 1 | -0/+1 |
| | |||||
* | Document None as timeout for asyncio.timeout() | Andrew Svetlov | 2016-03-29 | 1 | -0/+2 |
| | |||||
* | Issue #25314: store_true and store_false also create appropriate defaults. | Raymond Hettinger | 2011-11-20 | 1 | -4/+6 |
| | |||||
* | Issue #23804: Fix SSL recv/read(0) to not return 1024 bytes | Martin Panter | 2016-03-28 | 4 | -5/+15 |
| | |||||
* | Issue #25195: Fix a regression in mock.MagicMock | Berker Peksag | 2016-03-27 | 3 | -0/+24 |
| | | | | | | | _Call is a subclass of tuple (changeset 3603bae63c13 only works for classes) so we need to implement __ne__ ourselves. Patch by Andrew Plummer. | ||||
* | Issue #23758: Improve num_params docs of create_{function,aggregate} functions | Berker Peksag | 2016-03-27 | 2 | -3/+36 |
| | | | | | | | | If you pass -1, the callable can take any number of arguments. Added tests to verify the behavior. Initial patch by Cédric Krier. | ||||
* | Document sqlite3.Cursor.close() | Berker Peksag | 2016-03-27 | 1 | -0/+6 |
| | | | | | | | The behaviour of the close method is tested by ClosedCurTests in Lib/sqlite3/test/dbapi.py. This is basically a backport of https://github.com/ghaering/pysqlite/issues/73. | ||||
* | sqlite3 documentation: Connection.iterdump() is a method | Berker Peksag | 2016-03-27 | 1 | -2/+2 |
| | |||||
* | Issue #26644: Raise ValueError for negative SSLSocket.recv() and read() | Martin Panter | 2016-03-27 | 3 | -0/+19 |
| | |||||
* | _pickle: Fix load_counted_tuple(), use Py_ssize_t for size | Victor Stinner | 2016-03-14 | 1 | -1/+1 |
| | | | | Fix a warning on Windows 64-bit. | ||||
* | Issue#26616:Fixed a bug in datetime.astimezone() method. | Alexander Belopolsky | 2016-03-25 | 3 | -1/+16 |
| | |||||
* | doctest: fix _module_relative_path() error message | Victor Stinner | 2016-03-25 | 1 | -2/+3 |
| | | | | | Write the module name rather than <module> in the error message, if module has no __file__ attribute (ex: package). | ||||
* | Issue #25654: | Victor Stinner | 2016-03-25 | 5 | -19/+39 |
| | | | | | | | | | * multiprocessing: open file with closefd=False to avoid ResourceWarning * _test_multiprocessing: open file with O_EXCL to detect bugs in tests (if a previous test forgot to remove TESTFN) * test_sys_exit(): remove TESTFN after each loop iteration Initial patch written by Serhiy Storchaka. | ||||
* | Issue #21925: Fix test_warnings for release mode | Victor Stinner | 2016-03-25 | 1 | -2/+2 |
| | | | | Use -Wd comment line option to log the ResourceWarning. | ||||
* | Use Py_uintptr_t for atomic pointers | Victor Stinner | 2016-01-22 | 3 | -30/+31 |
| | | | | | | | | Issue #26161: Use Py_uintptr_t instead of void* for atomic pointers in pyatomic.h. Use atomic_uintptr_t when <stdatomic.h> is used. Using void* causes compilation warnings depending on which implementation of atomic types is used. | ||||
* | pystate.h: fix _PyThreadState_UncheckedGet() | Victor Stinner | 2016-03-24 | 1 | -2/+0 |
| | | | | Declare the function even if thread support is disabled. | ||||
* | warnings.formatwarning(): catch exceptions | Victor Stinner | 2016-03-24 | 3 | -2/+29 |
| | | | | | | Issue #21925: warnings.formatwarning() now catches exceptions on linecache.getline(...) to be able to log ResourceWarning emitted late during the Python shutdown process. | ||||
* | Fix test_warnings.test_improper_option() | Victor Stinner | 2016-03-24 | 1 | -6/+9 |
| | | | | | test_warnings: only run test_improper_option() and test_warnings_bootstrap() once. The unit test doesn't depend on self.module. | ||||
* | Issue #26621: Remove unnecessary test. | Stefan Krah | 2016-03-23 | 1 | -1/+0 |
| | |||||
* | Issue #26525: Change chr example to match change in ord example. | Terry Jan Reedy | 2016-03-23 | 1 | -1/+1 |
| | |||||
* | Makefile.pre.in (profile-opt): Fix bashism. | doko@ubuntu.com | 2016-03-23 | 1 | -1/+1 |
| | |||||
* | Enhance _tracemalloc debug mode | Victor Stinner | 2016-03-22 | 1 | -1/+1 |
| | | | | Issue #26588: Enhance assertion in set_reentrant() | ||||
* | Fix _tracemalloc start/stop | Victor Stinner | 2016-03-22 | 1 | -14/+0 |
| | | | | | | | | | Issue #26588: Fix _tracemalloc start/stop: don't play with the reentrant flag. set_reentrant(1) fails with an assertion error if tracemalloc_init() is called first in a thread A and tracemalloc_start() is called second in a thread B. The tracemalloc is imported in a thread A. Importing the module calls tracemalloc_init(). tracemalloc.start() is called in a thread B. | ||||
* | Issue #24266: Cancel history search mode with Ctrl+C in Readline 7 | Martin Panter | 2016-03-22 | 2 | -0/+6 |
| | |||||
* | merge 3.4 (#17167) | Benjamin Peterson | 2016-03-22 | 1 | -1/+1 |
|\ | |||||
| * | remove useless $ keyword (closes #17167) | Benjamin Peterson | 2016-03-22 | 1 | -1/+1 |
| | | |||||
* | | Issue #15699: Reunite comment with variable | Martin Panter | 2016-03-22 | 1 | -16/+3 |
| | | |||||
* | | Issue #26525: Change ord example from nu to more easily recognized Euro sign. | Terry Jan Reedy | 2016-03-21 | 1 | -2/+2 |
| | | |||||
* | | Issue #15660: Further clarify 0 prefix for width specifier in formats. | Terry Jan Reedy | 2016-03-21 | 1 | -2/+4 |
| | | |||||
* | | Issue #26581: Use the first coding cookie on a line, not the last one. | Serhiy Storchaka | 2016-03-20 | 8 | -6/+10 |
| | | |||||
* | | 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 #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. |