Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #21636: Fix test_logging, skip UNIX stream (AF_UNIX) tests on Windows. | Victor Stinner | 2014-06-02 | 1 | -10/+12 |
| | | | | Patch written by Claudiu Popa. | ||||
* | Issue #21634: Fix pystone micro-benchmark: use floor division instead of true | Victor Stinner | 2014-06-02 | 1 | -3/+10 |
| | | | | | 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 | 1 | -0/+3 |
| | | | | 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 | 1 | -4/+6 |
| | | | | | 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 | 1 | -1/+1 |
| | |||||
* | Don't restrict ourselves to a "max" fd when closing fds before exec() | Gregory P. Smith | 2014-06-01 | 1 | -0/+53 |
| | | | | | | | | | 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 | 1 | -3/+3 |
| | | | | 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 | 1 | -1/+26 |
| | | | | the tkinter module on 64-bit platforms. | ||||
* | Add tests for getint, getdouble and getboolean methods of the tkapp object. | Serhiy Storchaka | 2014-05-30 | 1 | -0/+44 |
| | |||||
* | Fix issue #14315: The zipfile module now ignores extra fields in the central | Gregory P. Smith | 2014-05-30 | 1 | -0/+15 |
| | | | | | | 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 | 1 | -0/+35 |
| | | | | Claudiu Popa. | ||||
* | Fix for raising exception not derived from BaseException in ↵ | Andrew Svetlov | 2014-05-27 | 1 | -0/+4 |
| | | | | _SelectorSslTransport.resume_reading | ||||
* | Issue #21481: Teach argparse equality tests to return NotImplemented when ↵ | Raymond Hettinger | 2014-05-26 | 1 | -0/+6 |
| | | | | comparing to unknown types. | ||||
* | Issue 8743: Improve interoperability between sets and the collections.Set ↵ | Raymond Hettinger | 2014-05-26 | 1 | -4/+156 |
| | | | | abstract base class. | ||||
* | Issue 13355: Make random.triangular degrade gracefully when low == high. | Raymond Hettinger | 2014-05-26 | 1 | -1/+1 |
| | |||||
* | Issue #19925: Added tests for the spwd module. Original patch by Vajrasky Kok. | Serhiy Storchaka | 2014-05-25 | 1 | -0/+60 |
| | |||||
* | Issue #14710: Fix both pkgutil.find_loader() and get_loader() to not | Brett Cannon | 2014-05-23 | 1 | -0/+14 |
| | | | | | | 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 | 1 | -0/+12 |
| | | | | 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 | 1 | -3/+39 |
| | | | | | | | 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 | 1 | -1/+1 |
| | | | | simplify the synchronization with Trollius | ||||
* | Issue #20998: Fixed re.fullmatch() of repeated single character pattern | Serhiy Storchaka | 2014-05-14 | 1 | -0/+5 |
| | | | | with ignore case. Original patch by Matthew Barnett. | ||||
* | Issue #21075: fileinput.FileInput now reads bytes from standard stream if | Serhiy Storchaka | 2014-05-14 | 1 | -1/+9 |
| | | | | 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 | 1 | -0/+25 |
| | | | | | None: RuntimeError("sys.stderr is None") instead of AttributeError("'NoneType' object has no attribute 'fileno'"). | ||||
* | Backed out changeset 6ceedbd88b5f | Victor Stinner | 2014-05-14 | 1 | -12/+0 |
| | |||||
* | Issue #21488: Add support of keyword arguments for codecs.encode and ↵ | Victor Stinner | 2014-05-14 | 1 | -0/+12 |
| | | | | codecs.decode | ||||
* | Issue #21499: Ignore __builtins__ in several test_importlib.test_api tests. | Eric Snow | 2014-05-13 | 1 | -7/+8 |
| | |||||
* | Fix test-order-dependend asyncio test failure caused by rev ↵ | Guido van Rossum | 2014-05-13 | 1 | -6/+9 |
| | | | | 909ea8cc86bbab92dbb6231668f403b7360f30fa. | ||||
* | - Issue #17756: Fix test_code test when run from the installed location. | doko@ubuntu.com | 2014-05-13 | 1 | -1/+1 |
| | |||||
* | Issue #21422: Add a test to check that bool << int and bool >> int return an int | Victor Stinner | 2014-05-12 | 1 | -0/+7 |
| | |||||
* | asyncio: Fix upstream issue 168: StreamReader.read(-1) from pipe may hang if ↵ | Guido van Rossum | 2014-05-12 | 1 | -0/+36 |
| | | | | data exceeds buffer limit. | ||||
* | Try to fix issue #21425 workaround for shared library builds | Antoine Pitrou | 2014-05-11 | 1 | -2/+2 |
| | |||||
* | Fix printing out error message when test fails and run with -bb | Antoine Pitrou | 2014-05-11 | 1 | -1/+1 |
| | |||||
* | Try workaround for test issues in #21425 | Antoine Pitrou | 2014-05-11 | 1 | -0/+8 |
| | |||||
* | Issue #21425: Fix flushing of standard streams in the interactive interpreter. | Antoine Pitrou | 2014-05-11 | 2 | -2/+51 |
| | |||||
* | Issue #21435: Segfault in gc with cyclic trash | Tim Peters | 2014-05-08 | 1 | -0/+32 |
| | | | | | 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-08 | 2 | -0/+33 |
| | | | | | | 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 | 1 | -2/+3 |
| | |||||
* | Issue #21088: Bugfix for curses.window.addch() regression in 3.4.0. | Larry Hastings | 2014-05-04 | 1 | -0/+30 |
| | | | | 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-04 | 1 | -1/+3 |
| | | | | | 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-04 | 1 | -18/+12 |
| | |||||
* | improve test coverage of filecmp (closes #21357) | Benjamin Peterson | 2014-05-04 | 1 | -5/+75 |
| | | | | Patch by Diana Clarke. | ||||
* | Issue #18604: Consolidated checks for GUI availability. | Zachary Ware | 2014-05-02 | 4 | -29/+58 |
| | | | | | | | | | 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 | 1 | -0/+17 |
| | |||||
* | Closes issue #21316: mark test_devpoll to be meaningfull only for Solaris | Jesus Cea | 2014-04-29 | 1 | -4/+2 |
| | |||||
* | Issue #21321: itertools.islice() now releases the reference to the source ↵ | Antoine Pitrou | 2014-04-29 | 1 | -2/+11 |
| | | | | | | 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 | 1 | -0/+20 |
| | | | | raises a TypeError. | ||||
* | asyncio: Add __weakref__ slots to Handle and CoroWrapper. Upstream issue #166. | Guido van Rossum | 2014-04-27 | 2 | -0/+14 |
| | |||||
* | make operations on closed dumb databases raise a consistent exception ↵ | Benjamin Peterson | 2014-04-26 | 1 | -4/+25 |
| | | | | | | (closes #19385) Patch by Claudiu Popa. | ||||
* | Issue #21207: Detect when the os.urandom cached fd has been closed or ↵ | Antoine Pitrou | 2014-04-26 | 1 | -0/+43 |
| | | | | replaced, and open it anew. | ||||
* | Issue #21346: Fix typo, make message consistent in test_itertools. | Zachary Ware | 2014-04-24 | 1 | -1/+1 |
| | | | | Pointed out by Brian Kearns. |