summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | Issue #17998: Fix an internal error in regular expression engine.Serhiy Storchaka2013-08-034-7/+19
| |\ \ \ | | | |/ | | |/|
| | * | Issue #17998: Fix an internal error in regular expression engine.Serhiy Storchaka2013-08-034-7/+19
| | | |
* | | | Added tag v3.4.0a1 for changeset 46535f65e7f3Larry Hastings2013-08-031-0/+1
| | | |
* | | | Bumped version to 3.4.0a1.v3.4.0a1Larry Hastings2013-08-036-8/+8
| | | |
* | | | Updated pydoc topics for Python 3.4.0a1 release.Larry Hastings2013-08-031-12/+12
| |_|/ |/| |
* | | Remove debugging print.Mark Dickinson2013-08-031-1/+0
|/ /
* | - Fix a fcntl test case on KFreeBSD, Debian #708653 (Petr Salinger).doko@ubuntu.com2013-08-032-0/+4
|\ \ | |/
| * - Fix a fcntl test case on KFreeBSD, Debian #708653 (Petr Salinger).doko@ubuntu.com2013-08-032-0/+4
| |
* | Merge #18396 from 3.3Nick Coghlan2013-08-032-2/+11
|\ \ | |/
| * Close #18396: fix spurious test_signal failure on WindowsNick Coghlan2013-08-032-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 Dickinson2013-08-031-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 Hastings2013-08-031-1/+1
| |
* | Issue #17046: merge from 3.3Ned Deily2013-08-032-1/+4
|\ \ | |/
| * Issue #17046: Fix test_subprocess test_executable_without_cwd broken test case.Ned Deily2013-08-032-1/+4
| |
* | Backout 62658d9d8926 (issue #10241): it causes a crash at shutdown when ↵Antoine Pitrou2013-08-024-33/+0
| | | | | | | | deallocating a Tkapp object.
* | Fix warning: ‘ptr2’ may be used uninitialized in this functionChristian Heimes2013-08-021-0/+1
| |
* | Issue #18325: Fix a test_kqueue failure on OpenBSD: kevent's data and eventCharles-François Natali2013-08-021-3/+3
|\ \ | |/ | | | | members are integers.
| * Issue #18325: Fix a test_kqueue failure on OpenBSD: kevent's data and eventCharles-François Natali2013-08-021-3/+3
| | | | | | | | members are integers.
* | Issue #18517: merge from 3.3Ned Deily2013-08-021-8/+9
|\ \ | |/
| * Issue #18517: Move definition of "xxlimited" extension to detect_modules().Ned Deily2013-08-021-8/+9
| |
* | Closes #18627: merge from 3.3Ned Deily2013-08-021-1/+1
|\ \ | |/
| * Issue #18627: Fix typo noticed by Vajrasky Kok.Ned Deily2013-08-021-1/+1
| |
* | Issue #17557: merge from 3.3Ned Deily2013-08-023-0/+34
|\ \ | |/
| * Issue #17557: Fix os.getgroups() to work with the modified behavior ofNed Deily2013-08-023-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 Hastings2013-08-022-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 Hastings2013-08-022-2/+14
| |
* | Issue #18519: Fix test_sqlite on old versions of libsqlite3Victor Stinner2013-08-011-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 exceptionVictor Stinner2013-08-011-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.pyNed Deily2013-08-011-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 Pitrou2013-08-011-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 Pitrou2013-08-014-0/+33
| | | | | | | | Patch by Neil Schemenauer, minimally modified.
* | Issue #18589: fix hyperlinking of type slots (tp_*)Antoine Pitrou2013-08-019-201/+201
|\ \ | |/
| * Issue #18589: fix hyperlinking of type slots (tp_*)Antoine Pitrou2013-08-019-192/+192
| |
* | Issue #18608: Avoid keeping a strong reference to the locale module inside ↵Antoine Pitrou2013-08-014-27/+51
| | | | | | | | the _io module.
* | Issue #18619: Fix atexit leaking callbacks registered from sub-interpreters, ↵Antoine Pitrou2013-08-013-44/+122
| | | | | | | | and make it GC-aware.
* | test_capi: make a specific test case for the subinterpreter testAntoine Pitrou2013-08-011-1/+6
| | | | | | | | (it was wrongly classified in the pending calls test case)
* | Remove Lib/site.py hack to unregister patched builtins.Antoine Pitrou2013-08-011-29/+10
| | | | | | | | It creates a refleak in subinterpreters, as atexit callbacks aren't triggered at their end.
* | Add a test for module weakrefabilityAntoine Pitrou2013-08-011-0/+9
| |
* | Issue #18569: The installer now adds .py to the PATHEXT variableMartin v. Löwis2013-08-012-0/+10
| | | | | | | | when extensions are registered. Patch by Paul Moore.
* | Add UUID for 3.4.Martin v. Löwis2013-08-011-0/+1
| |
* | - Issue #18257: Fix readlink usage in python-config. Install the pythondoko@ubuntu.com2013-08-014-2/+19
| | | | | | | | version again on Darwin.
* | issue9035: Prevent Windows-specific tests from running on non-Windows platformsTim Golden2013-08-011-16/+16
| |
* | Issue #9035: os.path.ismount now recognises volumes mounted belowTim Golden2013-08-014-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 Murray2013-08-013-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 Heimes2013-07-311-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 Heimes2013-07-311-0/+1
| | | | | | | | warning: 'utime.mtime_ns' may be used uninitialized in this function [-Wmaybe-uninitialized]
* | mergeChristian Heimes2013-07-310-0/+0
|\ \ | |/
| * mergeChristian Heimes2013-07-317-16/+20
| |\
* | \ Silence warning about set but unused variable inside compile_atom() in ↵Christian Heimes2013-07-311-0/+1
|\ \ \ | |/ / | | | | | | non-debug builds
| * | Silence warning about set but unused variable inside compile_atom() in ↵Christian Heimes2013-07-311-0/+1
| | | | | | | | | | | | non-debug builds