Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | | | Issue #17998: Fix an internal error in regular expression engine. | Serhiy Storchaka | 2013-08-03 | 4 | -7/+19 | |
| |\ \ \ | | | |/ | | |/| | ||||||
| | * | | Issue #17998: Fix an internal error in regular expression engine. | Serhiy Storchaka | 2013-08-03 | 4 | -7/+19 | |
| | | | | ||||||
* | | | | Added tag v3.4.0a1 for changeset 46535f65e7f3 | Larry Hastings | 2013-08-03 | 1 | -0/+1 | |
| | | | | ||||||
* | | | | Bumped version to 3.4.0a1.v3.4.0a1 | Larry Hastings | 2013-08-03 | 6 | -8/+8 | |
| | | | | ||||||
* | | | | Updated pydoc topics for Python 3.4.0a1 release. | Larry Hastings | 2013-08-03 | 1 | -12/+12 | |
| |_|/ |/| | | ||||||
* | | | Remove debugging print. | Mark Dickinson | 2013-08-03 | 1 | -1/+0 | |
|/ / | ||||||
* | | - Fix a fcntl test case on KFreeBSD, Debian #708653 (Petr Salinger). | doko@ubuntu.com | 2013-08-03 | 2 | -0/+4 | |
|\ \ | |/ | ||||||
| * | - Fix a fcntl test case on KFreeBSD, Debian #708653 (Petr Salinger). | doko@ubuntu.com | 2013-08-03 | 2 | -0/+4 | |
| | | ||||||
* | | Merge #18396 from 3.3 | Nick Coghlan | 2013-08-03 | 2 | -2/+11 | |
|\ \ | |/ | ||||||
| * | Close #18396: fix spurious test_signal failure on Windows | Nick Coghlan | 2013-08-03 | 2 | -2/+11 | |
| | | | | | | | | | | signal.getsignal returns None for some signals if faulthandler is enabled (Patch by Jeremy Kloth) | |||||
* | | Minor consistency fixes for some longobject.c exception messages: | Mark Dickinson | 2013-08-03 | 1 | -4/+4 | |
| | | | | | | | | | | | | - replace 'long int' / 'long' by 'int' - fix capitalization of "Python" in PyLong_AsUnsignedLong - "is too large" -> "too large", for consistency with other messages. | |||||
* | | Fix minor documentation markup error. | Larry Hastings | 2013-08-03 | 1 | -1/+1 | |
| | | ||||||
* | | Issue #17046: merge from 3.3 | Ned Deily | 2013-08-03 | 2 | -1/+4 | |
|\ \ | |/ | ||||||
| * | Issue #17046: Fix test_subprocess test_executable_without_cwd broken test case. | Ned Deily | 2013-08-03 | 2 | -1/+4 | |
| | | ||||||
* | | Backout 62658d9d8926 (issue #10241): it causes a crash at shutdown when ↵ | Antoine Pitrou | 2013-08-02 | 4 | -33/+0 | |
| | | | | | | | | deallocating a Tkapp object. | |||||
* | | Fix warning: ‘ptr2’ may be used uninitialized in this function | Christian Heimes | 2013-08-02 | 1 | -0/+1 | |
| | | ||||||
* | | Issue #18325: Fix a test_kqueue failure on OpenBSD: kevent's data and event | Charles-François Natali | 2013-08-02 | 1 | -3/+3 | |
|\ \ | |/ | | | | | members are integers. | |||||
| * | Issue #18325: Fix a test_kqueue failure on OpenBSD: kevent's data and event | Charles-François Natali | 2013-08-02 | 1 | -3/+3 | |
| | | | | | | | | members are integers. | |||||
* | | Issue #18517: merge from 3.3 | Ned Deily | 2013-08-02 | 1 | -8/+9 | |
|\ \ | |/ | ||||||
| * | Issue #18517: Move definition of "xxlimited" extension to detect_modules(). | Ned Deily | 2013-08-02 | 1 | -8/+9 | |
| | | ||||||
* | | Closes #18627: merge from 3.3 | Ned Deily | 2013-08-02 | 1 | -1/+1 | |
|\ \ | |/ | ||||||
| * | Issue #18627: Fix typo noticed by Vajrasky Kok. | Ned Deily | 2013-08-02 | 1 | -1/+1 | |
| | | ||||||
* | | Issue #17557: merge from 3.3 | Ned Deily | 2013-08-02 | 3 | -0/+34 | |
|\ \ | |/ | ||||||
| * | Issue #17557: Fix os.getgroups() to work with the modified behavior of | Ned Deily | 2013-08-02 | 3 | -0/+34 | |
| | | | | | | | | getgroups(2) on OS X 10.8. Original patch by Mateusz Lenik. | |||||
| * | Issue #17899: Fix rare file descriptor leak in os.listdir(). | Larry Hastings | 2013-08-02 | 2 | -0/+13 | |
| | | | | | | | | (Done as separate patch from trunk as the code has diverged quite a bit.) | |||||
* | | Issue #17899: Fix rare file descriptor leak in os.listdir(). | Larry Hastings | 2013-08-02 | 2 | -2/+14 | |
| | | ||||||
* | | Issue #18519: Fix test_sqlite on old versions of libsqlite3 | Victor Stinner | 2013-08-01 | 1 | -3/+12 | |
| | | | | | | | | | | With old SQLite versions, _sqlite3_result_error() sets a new Python exception, so don't restore the previous exception. | |||||
* | | Issue #18609, #18408: _ctypes_add_traceback() now clears the current exception | Victor Stinner | 2013-08-01 | 1 | -3/+20 | |
| | | | | | | | | | | | | | | | | | | | | | | while adding the traceback, because it may call indirectly a Python function and Python functions must not be called with an exception set. In the case of the issue #18609, _ctypes_add_traceback() called the iso8859-1 decoder which is implemented in Python. Python has a ISO-8859-1 codec implemented in C. It is not used because PyUnicode_Decode() only uses the C codec for other names (aliases) of this codec ("latin-1", "latin1" and "iso-8859-1"). | |||||
* | | Fix OS X installer build script to handle the pretty-printed _sysconfigdata.py | Ned Deily | 2013-08-01 | 1 | -8/+48 | |
| | | | | | | | | | | when removing references to temporary build files. This is not an elegant solution but it does isolate changes to just build-installer.py. | |||||
* | | Fix the RLIMIT_CORE resource lowering logic in test_subprocess. | Antoine Pitrou | 2013-08-01 | 1 | -1/+1 | |
| | | | | | | | | | | We must only lower the soft limit, since lowering the hard limit makes it impossible to raise it back at the end. (this could prevent core dumps from being generated when the test suite crashes) | |||||
* | | Issue #10241: Clear extension module dict copies at interpreter shutdown. | Antoine Pitrou | 2013-08-01 | 4 | -0/+33 | |
| | | | | | | | | Patch by Neil Schemenauer, minimally modified. | |||||
* | | Issue #18589: fix hyperlinking of type slots (tp_*) | Antoine Pitrou | 2013-08-01 | 9 | -201/+201 | |
|\ \ | |/ | ||||||
| * | Issue #18589: fix hyperlinking of type slots (tp_*) | Antoine Pitrou | 2013-08-01 | 9 | -192/+192 | |
| | | ||||||
* | | Issue #18608: Avoid keeping a strong reference to the locale module inside ↵ | Antoine Pitrou | 2013-08-01 | 4 | -27/+51 | |
| | | | | | | | | the _io module. | |||||
* | | Issue #18619: Fix atexit leaking callbacks registered from sub-interpreters, ↵ | Antoine Pitrou | 2013-08-01 | 3 | -44/+122 | |
| | | | | | | | | and make it GC-aware. | |||||
* | | test_capi: make a specific test case for the subinterpreter test | Antoine Pitrou | 2013-08-01 | 1 | -1/+6 | |
| | | | | | | | | (it was wrongly classified in the pending calls test case) | |||||
* | | Remove Lib/site.py hack to unregister patched builtins. | Antoine Pitrou | 2013-08-01 | 1 | -29/+10 | |
| | | | | | | | | It creates a refleak in subinterpreters, as atexit callbacks aren't triggered at their end. | |||||
* | | Add a test for module weakrefability | Antoine Pitrou | 2013-08-01 | 1 | -0/+9 | |
| | | ||||||
* | | Issue #18569: The installer now adds .py to the PATHEXT variable | Martin v. Löwis | 2013-08-01 | 2 | -0/+10 | |
| | | | | | | | | when extensions are registered. Patch by Paul Moore. | |||||
* | | Add UUID for 3.4. | Martin v. Löwis | 2013-08-01 | 1 | -0/+1 | |
| | | ||||||
* | | - Issue #18257: Fix readlink usage in python-config. Install the python | doko@ubuntu.com | 2013-08-01 | 4 | -2/+19 | |
| | | | | | | | | version again on Darwin. | |||||
* | | issue9035: Prevent Windows-specific tests from running on non-Windows platforms | Tim Golden | 2013-08-01 | 1 | -16/+16 | |
| | | ||||||
* | | Issue #9035: os.path.ismount now recognises volumes mounted below | Tim Golden | 2013-08-01 | 4 | -5/+103 | |
| | | | | | | | | a drive root on Windows. Original patch by Atsuo Ishimoto. | |||||
* | | #17616: Improve context manager tests, fix bugs in close method and mode docs. | R David Murray | 2013-08-01 | 3 | -26/+54 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 'mode' docs fix: the file must always be opened in binary in Python3. Bug in Wave_write.close: when the close method calls the check that the header exists and it raises an error, the _file attribute never gets set to None, so the next close tries to close the file again and we get an ignored traceback in the __del__ method. The fix is to set _file to None in a finally clause. This represents a behavior change...in theory a program could be checking for the error on close and then doing a recovery action on the still open file and closing it again. But this change will only go into 3.4, so I think that behavior change is acceptable given that it would be pretty weird and unlikely logic to begin with. | |||||
* | | Initialize utime with 0. It fixes a couple of compiler warnung: | Christian Heimes | 2013-07-31 | 1 | -0/+1 | |
|\ \ | |/ | | | | | warning: 'utime.mtime_ns' may be used uninitialized in this function [-Wmaybe-uninitialized] | |||||
| * | Initialize utime with 0. It fixes a couple of compiler warnung: | Christian Heimes | 2013-07-31 | 1 | -0/+1 | |
| | | | | | | | | warning: 'utime.mtime_ns' may be used uninitialized in this function [-Wmaybe-uninitialized] | |||||
* | | merge | Christian Heimes | 2013-07-31 | 0 | -0/+0 | |
|\ \ | |/ | ||||||
| * | merge | Christian Heimes | 2013-07-31 | 7 | -16/+20 | |
| |\ | ||||||
* | \ | Silence warning about set but unused variable inside compile_atom() in ↵ | Christian Heimes | 2013-07-31 | 1 | -0/+1 | |
|\ \ \ | |/ / | | | | | | | non-debug builds | |||||
| * | | Silence warning about set but unused variable inside compile_atom() in ↵ | Christian Heimes | 2013-07-31 | 1 | -0/+1 | |
| | | | | | | | | | | | | non-debug builds |