Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Issue #18492: Allow all resources when tests are not run by regrtest.py. | Zachary Ware | 2014-06-02 |
| | | | | This changeset also includes cleanup allowed by this behavior change. | ||
* | Issue #21639: Add a test to check that PyMem_Malloc(0) with tracemalloc enabled | Victor Stinner | 2014-06-02 |
| | | | | does not crash. | ||
* | Issue #21636: Fix test_logging, skip UNIX stream (AF_UNIX) tests on Windows. | Victor Stinner | 2014-06-02 |
| | | | | Patch written by Claudiu Popa. | ||
* | Issue #21634: Fix pystone micro-benchmark: use floor division instead of true | Victor Stinner | 2014-06-02 |
| | | | | | division to benchmark integers instead of floating point numbers. Set pystone version to 1.2. Patch written by Lennart Regebro. | ||
* | Skip test_subprocess test_close_fds_when_max_fd_is_lowered on FreeBSD | Gregory P. Smith | 2014-06-01 |
| | | | | when fdescfs is not mounted on /dev/fd. | ||
* | Attempt to fix the "too many open files" errors on several of the | Gregory P. Smith | 2014-06-01 |
| | | | | | buildbots that the new test_close_fds_when_max_fd_is_lowered test causes. It now leaves 10 more low fd's available. | ||
* | Explicitly wait for the child instead of letting a destructor do it. | Gregory P. Smith | 2014-06-01 |
| | |||
* | Don't restrict ourselves to a "max" fd when closing fds before exec() | Gregory P. Smith | 2014-06-01 |
| | | | | | | | | | when we have a way to get an actual list of all open fds from the OS. Fixes issue #21618: The subprocess module would ignore fds that were inherited by the calling process and already higher than POSIX resource limits would otherwise allow. On systems with a functioning /proc/self/fd or /dev/fd interface the max is now ignored and all fds are closed. | ||
* | Test correct getXXX methods in Tkinter bigmem tests. | Serhiy Storchaka | 2014-05-30 |
| | | | | Tk.getint is just int, true Tk wrapper is available as Tk.tk.getint. | ||
* | Issue #21552: Fixed possible integer overflow of too long string lengths in | Serhiy Storchaka | 2014-05-30 |
| | | | | the tkinter module on 64-bit platforms. | ||
* | Add tests for getint, getdouble and getboolean methods of the tkapp object. | Serhiy Storchaka | 2014-05-30 |
| | |||
* | Fix issue #14315: The zipfile module now ignores extra fields in the central | Gregory P. Smith | 2014-05-29 |
| | | | | | | directory that are too short to be parsed instead of letting a struct.unpack error bubble up as this "bad data" appears in many real world zip files in the wild and is ignored by other zip tools. | ||
* | Issue #21493: Added test for ntpath.expanduser(). Original patch by | Serhiy Storchaka | 2014-05-28 |
| | | | | Claudiu Popa. | ||
* | Fix for raising exception not derived from BaseException in ↵ | Andrew Svetlov | 2014-05-27 |
| | | | | _SelectorSslTransport.resume_reading | ||
* | Issue #21481: Teach argparse equality tests to return NotImplemented when ↵ | Raymond Hettinger | 2014-05-26 |
| | | | | comparing to unknown types. | ||
* | Issue 8743: Improve interoperability between sets and the collections.Set ↵ | Raymond Hettinger | 2014-05-26 |
| | | | | abstract base class. | ||
* | Issue 13355: Make random.triangular degrade gracefully when low == high. | Raymond Hettinger | 2014-05-25 |
| | |||
* | Issue #19925: Added tests for the spwd module. Original patch by Vajrasky Kok. | Serhiy Storchaka | 2014-05-25 |
| | |||
* | Issue #14710: Fix both pkgutil.find_loader() and get_loader() to not | Brett Cannon | 2014-05-23 |
| | | | | | | raise an exception when a module doesn't exist. Thanks to Pavel Aslanov for the bug report. | ||
* | Issue #21538: The plistlib module now supports loading of binary plist files | Serhiy Storchaka | 2014-05-23 |
| | | | | when reference or offset size is not a power of two. | ||
* | Issue #21523: Fix over-pessimistic computation of the stack effect of some ↵ | Antoine Pitrou | 2014-05-23 |
| | | | | | | | opcodes in the compiler. This also fixes a quadratic compilation time issue noticeable when compiling code with a large number of "and" and "or" operators. | ||
* | asyncio: test_base_events: use mock.Mock instead of unittest.mock.Mock to | Victor Stinner | 2014-05-20 |
| | | | | simplify the synchronization with Trollius | ||
* | Issue #20998: Fixed re.fullmatch() of repeated single character pattern | Serhiy Storchaka | 2014-05-14 |
| | | | | with ignore case. Original patch by Matthew Barnett. | ||
* | Issue #21075: fileinput.FileInput now reads bytes from standard stream if | Serhiy Storchaka | 2014-05-14 |
| | | | | binary mode is specified. Patch by Sam Kimbrel. | ||
* | Issue #21497: faulthandler functions now raise a better error if sys.stderr is | Victor Stinner | 2014-05-14 |
| | | | | | None: RuntimeError("sys.stderr is None") instead of AttributeError("'NoneType' object has no attribute 'fileno'"). | ||
* | Backed out changeset 6ceedbd88b5f | Victor Stinner | 2014-05-14 |
| | |||
* | Issue #21488: Add support of keyword arguments for codecs.encode and ↵ | Victor Stinner | 2014-05-14 |
| | | | | codecs.decode | ||
* | Issue #21499: Ignore __builtins__ in several test_importlib.test_api tests. | Eric Snow | 2014-05-13 |
| | |||
* | Fix test-order-dependend asyncio test failure caused by rev ↵ | Guido van Rossum | 2014-05-13 |
| | | | | 909ea8cc86bbab92dbb6231668f403b7360f30fa. | ||
* | - Issue #17756: Fix test_code test when run from the installed location. | doko@ubuntu.com | 2014-05-13 |
| | |||
* | Issue #21422: Add a test to check that bool << int and bool >> int return an int | Victor Stinner | 2014-05-12 |
| | |||
* | asyncio: Fix upstream issue 168: StreamReader.read(-1) from pipe may hang if ↵ | Guido van Rossum | 2014-05-12 |
| | | | | data exceeds buffer limit. | ||
* | Try to fix issue #21425 workaround for shared library builds | Antoine Pitrou | 2014-05-11 |
| | |||
* | Fix printing out error message when test fails and run with -bb | Antoine Pitrou | 2014-05-11 |
| | |||
* | Try workaround for test issues in #21425 | Antoine Pitrou | 2014-05-11 |
| | |||
* | Issue #21425: Fix flushing of standard streams in the interactive interpreter. | Antoine Pitrou | 2014-05-11 |
| | |||
* | Issue #21435: Segfault in gc with cyclic trash | Tim Peters | 2014-05-08 |
| | | | | | Changed the iteration logic in finalize_garbage() to tolerate objects vanishing from the list as a side effect of executing a finalizer. | ||
* | Issue #21396: Fix TextIOWrapper(..., write_through=True) to not force a ↵ | Antoine Pitrou | 2014-05-09 |
| | | | | | | flush() on the underlying binary stream. Patch by akira. | ||
* | asyncio: Fix the second half of issue #21447: race in _write_to_self(). | Guido van Rossum | 2014-05-06 |
| | |||
* | Issue #21088: Bugfix for curses.window.addch() regression in 3.4.0. | Larry Hastings | 2014-05-04 |
| | | | | In porting to Argument Clinic, the first two arguments were reversed. | ||
* | Issue #18604: Skip the Tk instantiation test on OS X because it can | Ned Deily | 2014-05-03 |
| | | | | | cause GUI tests to segfault in Cocoa Tk when run under regrtest -j (multiple threads running subprocesses). | ||
* | use with blocks to make sure files are closed | Benjamin Peterson | 2014-05-03 |
| | |||
* | improve test coverage of filecmp (closes #21357) | Benjamin Peterson | 2014-05-03 |
| | | | | Patch by Diana Clarke. | ||
* | Issue #18604: Consolidated checks for GUI availability. | Zachary Ware | 2014-05-02 |
| | | | | | | | | | test_support._is_gui_available is now defined the same way on every platform, and now includes the Windows-specific check that had been in the Windows version of _is_gui_available and the OSX-specific check that was in tkinter.test.support.check_tk_availability. Also, every platform checks whether Tk can be instantiated (if the platform-specific checks passed). | ||
* | Issue #21374: Fix pickling of DecimalTuple. | Stefan Krah | 2014-04-29 |
| | |||
* | Closes issue #21316: mark test_devpoll to be meaningfull only for Solaris | Jesus Cea | 2014-04-29 |
| | |||
* | Issue #21321: itertools.islice() now releases the reference to the source ↵ | Antoine Pitrou | 2014-04-29 |
| | | | | | | iterator when the slice is exhausted. Patch by Anton Afanasyev. | ||
* | Issue #13204: Calling sys.flags.__new__ would crash the interpreter, now it ↵ | Antoine Pitrou | 2014-04-28 |
| | | | | raises a TypeError. | ||
* | asyncio: Add __weakref__ slots to Handle and CoroWrapper. Upstream issue #166. | Guido van Rossum | 2014-04-27 |
| | |||
* | make operations on closed dumb databases raise a consistent exception ↵ | Benjamin Peterson | 2014-04-26 |
| | | | | | | (closes #19385) Patch by Claudiu Popa. |