summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Issue #25910: Fixed more links in the docs.Serhiy Storchaka2016-04-113-4/+4
|
* typing doc: add versionadded 3.5Victor Stinner2016-04-111-0/+2
|
* Add a versionchanged directive to document addition of the new 'namereplace' ↵Berker Peksag2016-04-111-0/+2
| | | | | | error handler. Reported by Robert on docs@p.o.
* Merge headsSerhiy Storchaka2016-04-112-2/+2
|\
| * Fix typos in mock and exceptions docsBerker Peksag2016-04-112-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | The default value of __len__ is 0, not 1: >>> from unittest.mock import MagicMock >>> mock = MagicMock() >>> len(mock) 0 Reported by Alex on docs@p.o. Remove the remaining VMSError reference. VMS support is gone.
* | Issue #25910: Fixed dead links in the docs.Serhiy Storchaka2016-04-115-8/+8
|/
* Issue #26200: Restored more safe usages of Py_SETREF.Serhiy Storchaka2016-04-111-3/+3
|
* Issue #14456: Remove contradiction about blocking signals from bad mergeMartin Panter2016-04-111-3/+0
|
* Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREFSerhiy Storchaka2016-04-1020-42/+52
| | | | in places where Py_DECREF was used.
* Issue #26719: More efficient formatting of ints and floats in json.Serhiy Storchaka2016-04-102-62/+14
|
* Issue #25339: PYTHONIOENCODING now has priority over locale in setting theSerhiy Storchaka2016-04-103-14/+35
| | | | error handler for stdin and stdout.
* Remove relics of str8 (became bytes) and buffer (bytearray) type testsMartin Panter2016-04-101-33/+0
| | | | Remove redundant tests now that str is unicode.
* Issue #26712: Unify (r)split, (l/r)strip tests into string_testsMartin Panter2016-04-103-96/+35
| | | | This eliminates a few redundant test cases.
* Issue #21069: Move test_fileno() from test_urllibnet and rewrite itMartin Panter2016-04-092-11/+41
| | | | | | | | * No longer attempts to close already freed socket file descriptor * Use socket object to be compatible with Windows * Do not use a timeout to avoid complication with non-blocking mode * Use internal localhost server rather than depending on a third party * Avoid trouble with buffered HTTP data by testing tunnelled CONNECT data
* Issue #26609: Fix HTTP server tests to request an absolute URL pathMartin Panter2016-04-091-12/+29
|
* Update fcntl doc: replace IOError with OSErrorVictor Stinner2016-04-092-3/+3
| | | | Issue #26716. IOError is a deprecated alias to OSError since Python 3.3.
* Issue #17264: Fix cross refs and a markup error in extending/building.rstBerker Peksag2016-04-091-5/+6
|
* Issue #16329: Add .webm to mimetypes.types_mapBerker Peksag2016-04-092-0/+3
| | | | Patch by Giampaolo Rodola'.
* Issue #13952: Add .csv to mimetypes.types_mapBerker Peksag2016-04-092-0/+3
| | | | Patch by Geoff Wilson.
* Issue #26587: Remove an incorrect statement from the docsBrett Cannon2016-04-081-2/+1
|
* Issue #26709: Fixed Y2038 problem in loading binary PLists.Serhiy Storchaka2016-04-083-1/+12
|
* Issue #26257: Eliminate buffer_tests.py and fix ByteArrayAsStringTestMartin Panter2016-04-064-229/+54
| | | | | | | | | | | | | | | | ByteArrayAsStringTest.fixtype() was converting test data to bytes, not byte- array, therefore many of the test cases inherited in this class were not actually being run on the bytearray type. The tests in buffer_tests.py were redundant with methods in string_tests .MixinStrUnicodeUserStringTest and string_tests.CommonTest. These methods are now moved into string_tests.BaseTest, where they will also get run for bytes and bytearray. This change also moves test_additional_split(), test_additional_rsplit(), and test_strip() from CommonTest to BaseTest, meaning these tests are now run for bytes and bytearray. I plan to eliminate redundancies with existing tests in test_bytes.py soon.
* Adds version info to all signed binaries on Windows.Steve Dower2016-04-0634-16/+139
|
* Issue #22570: Renamed Py_SETREF to Py_XSETREF.Serhiy Storchaka2016-04-0637-132/+132
|
* Add Text=str. Make ItemsView derive from AbstractSet, not Set (which is the ↵Guido van Rossum2016-04-051-1/+6
| | | | concrete set).
* Many changes from the upstream repo (https://github.com/python/typing).Guido van Rossum2016-04-052-179/+371
| | | | | | | | | | | | | | | | | | | | | | | | This syncs to rev 7b43ada77821d23e55e3a4b35f6055a59b9e1ad7 there. Summary: - Add typing.DefaultDict (as a generic variant of collections.defaultdict). - Use collections.Reversible if it exists (only relevant for Python 3.6). - Revamped generic class behavior to conform to updated PEP 484. - Improve speed of Generic.__new__. - Make sure __init__ is called for new Generic instances. Fix issue #26391. - Refactor async support to be compatible with 3.2, 3.3, 3.4. - Remove 'io' and 're' from __all__ (they still exist, just not included by "import *"). Fix issue #26234. - Change @overload -- you can now use it outside stubs (you still cannot call the decorated function though).
* Issue #6953: Rearrange and expand Readline module documentationMartin Panter2016-04-053-75/+136
| | | | | | | | | | | | | | | | | * Group functions into six new subsections * Document the underlying Readline function or variable accessed * get_history_length() returns the history file limit * clear_history() is conditionally compiled in * Clarify zero and one bases for history item indexes * parse_and_bind() uses its argument directly as an init line * Change "command line" to "line buffer" for consistency * read_init_file() also executes the file * read_history_file() replaces the previous history * write_history_file() overwrites any existing file * Differentiate history file lines from history list items, which could be multi-line * Add more information about completion, also addressing Issue #10796 * libedit (Editline) may be used on any platform; detection is OS X specific
* Fix typos in documentation and commentsMartin Panter2016-04-057-13/+13
|
* Issue #23735: Avoid sighandler_t Gnu-ismMartin Panter2016-04-031-1/+1
|
* Issue #23735: Add SIGWINCH handler for Readline 6.3+ support, by Eric PriceMartin Panter2016-04-036-0/+87
|
* Issue #26586: Handle excessive header fields in http.server, by Xiang ZhangMartin Panter2016-04-033-0/+18
|
* Issue #26679: Fix description of KEY_PPAGE and KEY_NPAGE constantsBerker Peksag2016-04-021-2/+2
| | | | Patch by Robert Bachmann and SilentGhost.
* Issue #26688: Fix module name in mock docsBerker Peksag2016-04-021-3/+3
| | | | Patch by Ashley Anderson.
* Issue #26678: Fix indexing of datetime.tzinfo and timezone classesMartin Panter2016-04-011-59/+63
| | | | Also fix links to the “tzinfo” class and attributes.
* Added a cookbook recipe for a logging context manager.Vinay Sajip2016-04-011-0/+102
|
* asyncio: Don't log ConnectionAbortedErrorVictor Stinner2016-04-015-5/+10
| | | | | Issue #26509: In fatal error handlers, don't log ConnectionAbortedError which occur on Windows.
* asyncio: allow None as wait timeoutVictor Stinner2016-04-012-6/+24
| | | | | | Fix GH#325: Allow to pass None as a timeout value to disable timeout logic. Change written by Andrew Svetlov and merged by Guido van Rossum.
* asyncio: sync overlapped.c with GitHubVictor Stinner2016-04-011-0/+6
| | | | | | | | | | On Python 3.3, use aliases: * PyMem_RawMalloc = PyMem_Malloc * PyMem_RawFree = PyMem_Free These aliases are not need in Python 3.5, but this change makes synchronization of code base simpler.
* Issue #22854: Fix logic for skipping testMartin Panter2016-03-311-1/+1
|
* Remove redundant leading zeroes in PEP references.Serhiy Storchaka2016-03-316-15/+15
|
* Issue #22854: Skip pipe seek tests on WindowsMartin Panter2016-03-311-2/+7
|
* Issue #22854: Clarify documentation about UnsupportedOperation and add testsMartin Panter2016-03-316-35/+130
| | | | | Also change BufferedReader.writable() and BufferedWriter.readable() to always return False.
* Issue #26492: Added additional tests for exhausted iterators of mutable ↵Serhiy Storchaka2016-03-303-0/+24
| | | | sequences.
* Issue #26494: Fixed crash on iterating exhausting iterators.Serhiy Storchaka2016-03-3019-22/+92
| | | | | | Affected classes are generic sequence iterators, iterators of str, bytes, bytearray, list, tuple, set, frozenset, dict, OrderedDict, corresponding views and os.scandir() iterator.
* Fix typo in xml.dom.pulldom.rstBerker Peksag2016-03-301-1/+3
| | | | Reported by Matthew Cole on docs@p.o.
* test_urllibnet: set timeout on test_fileno()Victor Stinner2016-03-301-1/+1
| | | | Use the default timeout of 30 seconds to avoid blocking forever.
* Fix ResourceWarning in test_unittest when interruptedVictor Stinner2016-03-291-3/+6
|
* Issue #25911: Backport os._DummyDirEntry fixesVictor Stinner2016-03-291-2/+36
| | | | | | | | | * Fix test_os.BytesWalkTests on Windows * Mimick better the reference os.DirEntry on Windows * _DummyDirEntry now caches os.stat() result * _DummyDirEntry constructor now tries to get os.stat() * Fix os._DummyDirEntry.is_symlink(), don't follow symbolic links: use os.stat(path, follow_symlinks=False).
* Issue #26643: Add missing shutil resources to regrtest.pyVictor Stinner2016-03-291-0/+1
|
* Document None as timeout for asyncio.timeout()Andrew Svetlov2016-03-291-0/+2
|