- 22 Mar, 2015 13 kayıt (commit)
-
-
R David Murray yazdı
-
R David Murray yazdı
-
R David Murray yazdı
-
R David Murray yazdı
Some http servers will reject PUT, POST, and PATCH requests if they do not have a Content-Length header. Patch by James Rutherford, with additional cleaning up of the 'request' documentation by me.
-
R David Murray yazdı
-
R David Murray yazdı
-
Paul Moore yazdı
As a result, explicitly support pathlib.Path objects as arguments. Also added tests for the CLI interface.
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
Patch by Mike Short.
-
Ned Deily yazdı
-
Ned Deily yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
raising TypeError when statically allocated type subclasses dynamically allocated type
-
- 21 Mar, 2015 10 kayıt (commit)
-
-
Victor Stinner yazdı
-
Victor Stinner yazdı
which returned an invalid result (result+error or no result without error) in the exception message. Add also unit test to check that the exception contains the name of the function. Special case: the final _PyEval_EvalFrameEx() check doesn't mention the function since it didn't execute a single function but a whole frame.
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
Serhiy Storchaka yazdı
and socket open until the garbage collector cleans them up. Patch by Martin Panter.
-
Serhiy Storchaka yazdı
and socket open until the garbage collector cleans them up. Patch by Martin Panter.
-
Serhiy Storchaka yazdı
-
Steve Dower yazdı
-
- 20 Mar, 2015 17 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
Serhiy Storchaka yazdı
official POSIX documentation. Updated the documenttion for Python 3. Patch by Alex Shkop.
-
R David Murray yazdı
-
R David Murray yazdı
Being able to read non-python text files is not a purpose of linecache, but it does work and people use it. This changeset adjusts the language to make it clear that Python files are not treated uniquely, but does not go so far as to say reading non-python files is explicitly supported.
-
Victor Stinner yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
Indexing bytes retiurns an integer, not bytes.
-
Serhiy Storchaka yazdı
Indexing bytes retiurns an integer, not bytes.
-
Serhiy Storchaka yazdı
some circunstances while NamedTemporaryFile object was living. This causes failing test_csv. Changed the implementation of NamedTemporaryFile.__iter__ to make tests passed.
-
Serhiy Storchaka yazdı
some circunstances while NamedTemporaryFile object was living. This causes failing test_csv. Changed the implementation of NamedTemporaryFile.__iter__ to make tests passed.
-
Victor Stinner yazdı
-
Victor Stinner yazdı
None on Windows. When the file is not readable, the error occurs at open on UNIX. On Windows, the error only occurs at the first operation on the open file. It would require to many changes to set __context__ to an OSError for all file operations, for a little benefit (__context__ is almost never used).
-
Victor Stinner yazdı
signal.sigtimedwait() if functions are missing
-
Victor Stinner yazdı
If Python failed, show also stdout in the assertion error.
-
Victor Stinner yazdı
when interrupted by a signal not in the *sigset* parameter, if the signal handler does not raise an exception. signal.sigtimedwait() recomputes the timeout with a monotonic clock when it is retried. Remove test_signal.test_sigwaitinfo_interrupted() because sigwaitinfo() doesn't raise InterruptedError anymore if it is interrupted by a signal not in its sigset parameter.
-
Victor Stinner yazdı
Save and then restore errno because PyErr_CheckSignals() and PyErr_SetFromErrno() can modify it.
-
Victor Stinner yazdı
-