summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Try to fix test_cleanup (issue #20599).Serhiy Storchaka2014-02-121-2/+2
|
* Issue #17671: Fixed a crash when use non-initialized io.BufferedRWPair.Serhiy Storchaka2014-02-123-2/+48
|\ | | | | | | Based on patch by Stephen Tu.
| * Issue #17671: Fixed a crash when use non-initialized io.BufferedRWPair.Serhiy Storchaka2014-02-123-2/+48
| | | | | | | | Based on patch by Stephen Tu.
* | Issue #19255: Clear error after failed PyDict_SetItem() on shutdown.Serhiy Storchaka2014-02-121-2/+4
|\ \ | |/ | | | | This silences a Coverity complain.
| * Issue #19255: Clear error after failed PyDict_SetItem() on shutdown.Serhiy Storchaka2014-02-121-2/+4
| | | | | | | | This silences a Coverity complain.
* | whatsnew: os.path.samestat on windows, keyword defaults evaluation order.R David Murray2014-02-122-3/+11
| |
* | whatsnew: command.com support gone, int *base* can be __index__ but not float.R David Murray2014-02-121-0/+9
| |
* | Add references for Xcode and the Python Developer's Guideto the internal ↵Ned Deily2014-02-121-0/+7
|\ \ | |/ | | | | Mac/README file.
| * Add references for Xcode and the Python Developer's GuideNed Deily2014-02-121-0/+7
| | | | | | | | to the internal Mac/README file.
* | whatsnew: object.__format__ raises TypeError on non-empty string.R David Murray2014-02-113-4/+18
| | | | | | | | | | | | See issues #7994 and #9856. I also modified with wording of the format doc entry to better match what really happens, and added a versionchanged to the datamodel object.__format__ section.
* | Issue #20495: Skip test_read_pty_output() of test_asyncio on FreeBSD older thanVictor Stinner2014-02-111-0/+2
| | | | | | | | FreeBSD 8
* | whatsnew: undocumented Popen.wait endtime is deprecated.R David Murray2014-02-111-0/+4
| |
* | Deprecate Popen.wait()'s undocumented endtime parameter. issue20572.Gregory P. Smith2014-02-111-0/+5
| |
* | Issue #20505: Remove debug codeVictor Stinner2014-02-111-20/+0
| |
* | merge 3.3 (#20594)Benjamin Peterson2014-02-112-2/+8
|\ \ | |/
| * avoid name clash with posix_close (closes #20594)Benjamin Peterson2014-02-112-2/+8
| |
* | remove dynamic initializer lists for c89 compliance (closes #20595)Benjamin Peterson2014-02-112-3/+13
| |
* | whatsnew: __complex__ may not return float, .so may have multiple python modulesR David Murray2014-02-112-3/+12
| | | | | | | | Also a NEWS wording fixup.
* | asyncio, Tulip issue 131: as_completed() and wait() now raises a TypeError ifVictor Stinner2014-02-112-0/+30
| | | | | | | | the list of futures is not a list but a Future, Task or coroutine object
* | asyncio, Tulip issue 130: Add more checks on subprocess_exec/subprocess_shellVictor Stinner2014-02-113-7/+64
| | | | | | | | parameters
* | asyncio, Tulip issue 126: call_soon(), call_soon_threadsafe(), call_later(),Victor Stinner2014-02-116-13/+39
| | | | | | | | | | call_at() and run_in_executor() now raise a TypeError if the callback is a coroutine function.
* | Issue #20505: use also the monotonic time to decide if asyncio debug tracesVictor Stinner2014-02-111-3/+4
| | | | | | | | should be printed
* | Issue #20505: Oops, only print debug info if selector.select(timeout) took lessVictor Stinner2014-02-111-1/+1
| | | | | | | | than timeout
* | Issue #20505: Improve debug info in asyncio event loopVictor Stinner2014-02-111-5/+18
| |
* | Merge headsSerhiy Storchaka2014-02-1115-25/+41
|\ \
| * \ Merge Python 3.4.0rc1 release branch.Larry Hastings2014-02-1122-65/+199
| |\ \
| | * | Issue #20505: Fix TestLoop, set the clock resolutionVictor Stinner2014-02-111-0/+1
| | | |
| * | | Python 3.4.0rc1: Post-release updates.Larry Hastings2014-02-112-1/+13
| | | |
| * | | Added tag v3.4.0rc1 for changeset 5e088cea8660Larry Hastings2014-02-101-0/+1
| | | |
| * | | Python 3.4.0rc1: Version bump.v3.4.0rc1Larry Hastings2014-02-106-9/+9
| | | |
| * | | Add PyType_GetSlot to python3 def file. Patch courtesy Martin v. Löwis.Larry Hastings2014-02-102-0/+2
| | | |
| * | | Python 3.4.0rc1 release: Updated pydoc topics, fixed suspicious markup errors.Larry Hastings2014-02-105-13/+13
| | | |
* | | | Issue #19856: shutil.move() failed to move a directory to other directorySerhiy Storchaka2014-02-113-1/+14
|\ \ \ \ | |_|/ / |/| | / | | |/ | |/| on Windows if source name ends with os.altsep.
| * | Issue #19856: shutil.move() failed to move a directory to other directorySerhiy Storchaka2014-02-113-1/+14
| | | | | | | | | | | | on Windows if source name ends with os.altsep.
* | | merge 3.3 (#20588)Benjamin Peterson2014-02-113-4/+14
|\ \ \ | |/ /
| * | don't put runtime values in array initializer for C89 compliance (closes #20588)Benjamin Peterson2014-02-113-4/+14
| | |
* | | whatsnew: slice.index no longer accepts negative values (or overflows).R David Murray2014-02-111-0/+5
| | |
* | | Fix PYTHONPATH wording. It's just PATH, not "normal posix convention".R David Murray2014-02-111-5/+4
| | |
* | | whatsnew: bytes/bytearray.join args, PYTHONPATH= is same as not set.R David Murray2014-02-111-0/+17
| | |
* | | Issue #20505: BaseEventLoop uses again the resolution of the clock to decide ifVictor Stinner2014-02-102-8/+9
| | | | | | | | | | | | scheduled tasks should be executed or not.
* | | Issue #20167: Add missing else: break in 3 places as noticed by Serhiy.Terry Jan Reedy2014-02-101-0/+6
| | |
* | | merge with 3.3Georg Brandl2014-02-106-5/+43
|\ \ \ | |/ /
| * | Fix trailing whitespace.Georg Brandl2014-02-101-2/+1
| | |
| * | merge with 3.3.4 releasing repoGeorg Brandl2014-02-1015-152/+300
| |\ \
| | * | Post-release updates.Georg Brandl2014-02-102-1/+13
| | | |
| | * | Added tag v3.3.4 for changeset 7ff62415e426Georg Brandl2014-02-091-0/+1
| | | |
| | * | news entryv3.3.4Georg Brandl2014-02-091-1/+4
| | | |
| | * | Issue #20374: delete spurious empty lineNed Deily2014-02-061-1/+0
| | | |
| | * | Issue #20374: Avoid compiler warnings when compiling readline with libedit.Ned Deily2014-02-061-0/+9
| | | |
| | * | Bump to 3.3.4 finalGeorg Brandl2014-02-096-14/+10
| | | |