- 22 Mar, 2015 16 commits
-
-
Serhiy Storchaka authored
-
Raymond Hettinger authored
-
Raymond Hettinger authored
Issue 23729: Document ElementTree namespace handling and fix an omission in the XPATH predicate table.
-
R David Murray authored
-
R David Murray authored
-
R David Murray authored
-
R David Murray authored
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 authored
-
R David Murray authored
-
Paul Moore authored
As a result, explicitly support pathlib.Path objects as arguments. Also added tests for the CLI interface.
-
Benjamin Peterson authored
-
Benjamin Peterson authored
Patch by Mike Short.
-
Ned Deily authored
-
Ned Deily authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
raising TypeError when statically allocated type subclasses dynamically allocated type
-
- 21 Mar, 2015 10 commits
-
-
Victor Stinner authored
-
Victor Stinner authored
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 authored
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
Serhiy Storchaka authored
and socket open until the garbage collector cleans them up. Patch by Martin Panter.
-
Serhiy Storchaka authored
and socket open until the garbage collector cleans them up. Patch by Martin Panter.
-
Serhiy Storchaka authored
-
Steve Dower authored
-
- 20 Mar, 2015 14 commits
-
-
Raymond Hettinger authored
-
Serhiy Storchaka authored
official POSIX documentation. Updated the documenttion for Python 3. Patch by Alex Shkop.
-
R David Murray authored
-
R David Murray authored
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 authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
Indexing bytes retiurns an integer, not bytes.
-
Serhiy Storchaka authored
Indexing bytes retiurns an integer, not bytes.
-
Serhiy Storchaka authored
some circunstances while NamedTemporaryFile object was living. This causes failing test_csv. Changed the implementation of NamedTemporaryFile.__iter__ to make tests passed.
-
Serhiy Storchaka authored
some circunstances while NamedTemporaryFile object was living. This causes failing test_csv. Changed the implementation of NamedTemporaryFile.__iter__ to make tests passed.
-
Victor Stinner authored
-
Victor Stinner authored
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 authored
signal.sigtimedwait() if functions are missing
-
Victor Stinner authored
If Python failed, show also stdout in the assertion error.
-