]> granicus.if.org Git - python/log
python
8 years agoIssue26748: Enum classes should evaluate as True
Ethan Furman [Thu, 14 Apr 2016 06:55:40 +0000 (23:55 -0700)]
Issue26748: Enum classes should evaluate as True

8 years agoIssue26748: Enum classes should evaluate as True
Ethan Furman [Thu, 14 Apr 2016 06:53:45 +0000 (23:53 -0700)]
Issue26748: Enum classes should evaluate as True

8 years agoIssue26748: Enum classes should evaluate as True
Ethan Furman [Thu, 14 Apr 2016 06:52:09 +0000 (23:52 -0700)]
Issue26748: Enum classes should evaluate as True

8 years agoIssue #26057: Got rid of nonneeded use of PyUnicode_FromObject().
Serhiy Storchaka [Wed, 13 Apr 2016 12:37:23 +0000 (15:37 +0300)]
Issue #26057: Got rid of nonneeded use of PyUnicode_FromObject().

8 years agoIssue #26718: super.__init__ no longer leaks memory if called multiple times.
Serhiy Storchaka [Wed, 13 Apr 2016 12:28:53 +0000 (15:28 +0300)]
Issue #26718: super.__init__ no longer leaks memory if called multiple times.
NOTE: A direct call of super.__init__ is not endorsed!

8 years agoIssue #26718: super.__init__ no longer leaks memory if called multiple times.
Serhiy Storchaka [Wed, 13 Apr 2016 12:27:33 +0000 (15:27 +0300)]
Issue #26718: super.__init__ no longer leaks memory if called multiple times.
NOTE: A direct call of super.__init__ is not endorsed!

8 years agomerge 3.5.
Senthil Kumaran [Wed, 13 Apr 2016 06:15:44 +0000 (23:15 -0700)]
merge 3.5.

[minor] - Correct the docstring of locale.str. Patch by poleto.

8 years ago[minor] - Correct the docstring of locale.str. Patch by poleto.
Senthil Kumaran [Wed, 13 Apr 2016 06:14:14 +0000 (23:14 -0700)]
[minor] - Correct the docstring of locale.str. Patch by poleto.

8 years agoIssue #25496: Merge tarfile doc from 3.5
Martin Panter [Wed, 13 Apr 2016 03:31:33 +0000 (03:31 +0000)]
Issue #25496: Merge tarfile doc from 3.5

8 years agoIssue #25496: Document compresslevel defaults to 9, by Hamza T Khan
Martin Panter [Wed, 13 Apr 2016 03:24:06 +0000 (03:24 +0000)]
Issue #25496: Document compresslevel defaults to 9, by Hamza T Khan

8 years agoCloses #26624: Adds validation of ucrtbase[d].dll version with warning for old versions.
Steve Dower [Wed, 13 Apr 2016 03:11:45 +0000 (20:11 -0700)]
Closes #26624: Adds validation of ucrtbase[d].dll version with warning for old versions.

8 years agoCloses #26624: Adds validation of ucrtbase[d].dll version with warning for old versions.
Steve Dower [Wed, 13 Apr 2016 03:11:25 +0000 (20:11 -0700)]
Closes #26624: Adds validation of ucrtbase[d].dll version with warning for old versions.

8 years agoIssue #26404: Add context manager to socketserver, by Aviv Palivoda
Martin Panter [Wed, 13 Apr 2016 00:36:52 +0000 (00:36 +0000)]
Issue #26404: Add context manager to socketserver, by Aviv Palivoda

8 years agoMerge 3.5 (os.urandom)
Victor Stinner [Tue, 12 Apr 2016 20:38:22 +0000 (22:38 +0200)]
Merge 3.5 (os.urandom)

8 years agoconfigure: fix HAVE_GETRANDOM_SYSCALL check
Victor Stinner [Tue, 12 Apr 2016 20:34:58 +0000 (22:34 +0200)]
configure: fix HAVE_GETRANDOM_SYSCALL check

syscall() function requires #include <unistd.h>.

8 years agoFix os.urandom() on Solaris 11.3
Victor Stinner [Tue, 12 Apr 2016 20:28:49 +0000 (22:28 +0200)]
Fix os.urandom() on Solaris 11.3

Issue #26735: Fix os.urandom() on Solaris 11.3 and newer when reading more than
1,024 bytes: call getrandom() multiple times with a limit of 1024 bytes per
call.

8 years agoUpdate pygettext.py to get ride of imp
Victor Stinner [Tue, 12 Apr 2016 16:46:10 +0000 (18:46 +0200)]
Update pygettext.py to get ride of imp

Issue #26639: Replace imp with importlib in Tools/i18n/pygettext.py.

Remove _get_modpkg_path(), replaced with importlib.util.find_spec().

8 years agoMerge 3.5
Victor Stinner [Tue, 12 Apr 2016 16:33:54 +0000 (18:33 +0200)]
Merge 3.5

8 years agoIssue #26647: Fix typo in test_grammar
Victor Stinner [Tue, 12 Apr 2016 16:33:41 +0000 (18:33 +0200)]
Issue #26647: Fix typo in test_grammar

Patch written by Demur Rumed.

8 years agoIssue #26647: Cleanup modulefinder
Victor Stinner [Tue, 12 Apr 2016 16:17:06 +0000 (18:17 +0200)]
Issue #26647: Cleanup modulefinder

Use directly dis.opmap[name] rather than dis.opname.index(name).

Patch written by Demur Rumed.

8 years agoIssue #26647: Cleanup opcode
Victor Stinner [Tue, 12 Apr 2016 16:15:26 +0000 (18:15 +0200)]
Issue #26647: Cleanup opcode

Simplify code to build opcode.opname. Patch written by Demur Rumed.

8 years agomerge with 3.5
Georg Brandl [Tue, 12 Apr 2016 05:52:22 +0000 (07:52 +0200)]
merge with 3.5

8 years agoClarify greedy-qualifier example, avoid HTML.
Georg Brandl [Tue, 12 Apr 2016 05:51:41 +0000 (07:51 +0200)]
Clarify greedy-qualifier example, avoid HTML.

8 years agoIssue #26733: Fixed formatting line numbers in test_dis.
Serhiy Storchaka [Tue, 12 Apr 2016 05:47:08 +0000 (08:47 +0300)]
Issue #26733: Fixed formatting line numbers in test_dis.
Based on patch by Xiang Zhang.

8 years agoIssue #26733: Fixed formatting line numbers in test_dis.
Serhiy Storchaka [Tue, 12 Apr 2016 05:46:28 +0000 (08:46 +0300)]
Issue #26733: Fixed formatting line numbers in test_dis.
Based on patch by Xiang Zhang.

8 years agoIssue #25910: Fixed more links in the docs.
Serhiy Storchaka [Mon, 11 Apr 2016 14:33:27 +0000 (17:33 +0300)]
Issue #25910: Fixed more links in the docs.

8 years agoIssue #25910: Fixed more links in the docs.
Serhiy Storchaka [Mon, 11 Apr 2016 14:32:33 +0000 (17:32 +0300)]
Issue #25910: Fixed more links in the docs.

8 years agoMerge 3.5
Victor Stinner [Mon, 11 Apr 2016 14:23:37 +0000 (16:23 +0200)]
Merge 3.5

8 years agotyping doc: add versionadded 3.5
Victor Stinner [Mon, 11 Apr 2016 14:23:22 +0000 (16:23 +0200)]
typing doc: add versionadded 3.5

8 years agoAdd a versionchanged directive to document addition of the new 'namereplace' error...
Berker Peksag [Mon, 11 Apr 2016 10:50:04 +0000 (13:50 +0300)]
Add a versionchanged directive to document addition of the new 'namereplace' error handler.

Reported by Robert on docs@p.o.

8 years agoAdd a versionchanged directive to document addition of the new 'namereplace' error...
Berker Peksag [Mon, 11 Apr 2016 10:49:46 +0000 (13:49 +0300)]
Add a versionchanged directive to document addition of the new 'namereplace' error handler.

Reported by Robert on docs@p.o.

8 years agoNull merge
Serhiy Storchaka [Mon, 11 Apr 2016 09:39:18 +0000 (12:39 +0300)]
Null merge

8 years agoMerge heads
Serhiy Storchaka [Mon, 11 Apr 2016 09:39:07 +0000 (12:39 +0300)]
Merge heads

8 years agoMerge heads
Serhiy Storchaka [Mon, 11 Apr 2016 09:38:54 +0000 (12:38 +0300)]
Merge heads

8 years agoIssue #25910: Fixed dead links in the docs.
Serhiy Storchaka [Mon, 11 Apr 2016 09:34:07 +0000 (12:34 +0300)]
Issue #25910: Fixed dead links in the docs.

8 years agoFix typos in mock and exceptions docs
Berker Peksag [Mon, 11 Apr 2016 09:23:25 +0000 (12:23 +0300)]
Fix typos in mock and exceptions docs

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.

8 years agoFix typos in mock and exceptions docs
Berker Peksag [Mon, 11 Apr 2016 09:23:04 +0000 (12:23 +0300)]
Fix typos in mock and exceptions docs

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.

8 years agoIssue #25910: Fixed dead links in the docs.
Serhiy Storchaka [Mon, 11 Apr 2016 09:18:56 +0000 (12:18 +0300)]
Issue #25910: Fixed dead links in the docs.

8 years agoIssue #26200: Restored more safe usages of Py_SETREF.
Serhiy Storchaka [Mon, 11 Apr 2016 06:57:37 +0000 (09:57 +0300)]
Issue #26200: Restored more safe usages of Py_SETREF.

8 years agoIssue #26200: Restored more safe usages of Py_SETREF.
Serhiy Storchaka [Mon, 11 Apr 2016 06:53:37 +0000 (09:53 +0300)]
Issue #26200: Restored more safe usages of Py_SETREF.

8 years agoIssue #14456: Merge signal doc fix from 3.5
Martin Panter [Mon, 11 Apr 2016 02:45:22 +0000 (02:45 +0000)]
Issue #14456: Merge signal doc fix from 3.5

8 years agoIssue #14456: Remove contradiction about blocking signals from bad merge
Martin Panter [Mon, 11 Apr 2016 02:44:34 +0000 (02:44 +0000)]
Issue #14456: Remove contradiction about blocking signals from bad merge

8 years agoIssue #26585: Eliminate _quote_html() and use html.escape(quote=False)
Martin Panter [Mon, 11 Apr 2016 00:40:08 +0000 (00:40 +0000)]
Issue #26585: Eliminate _quote_html() and use html.escape(quote=False)

Patch by Xiang Zhang.

8 years agoIssue #26685: Raise OSError if closing a socket fails
Martin Panter [Mon, 11 Apr 2016 00:38:12 +0000 (00:38 +0000)]
Issue #26685: Raise OSError if closing a socket fails

8 years agoIssue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF
Serhiy Storchaka [Sun, 10 Apr 2016 15:12:01 +0000 (18:12 +0300)]
Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF
in places where Py_DECREF was used.

8 years agoIssue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF
Serhiy Storchaka [Sun, 10 Apr 2016 15:05:40 +0000 (18:05 +0300)]
Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF
in places where Py_DECREF was used.

8 years agoIssue #26623: TypeError message for JSON unserializible object now contains
Serhiy Storchaka [Sun, 10 Apr 2016 12:46:30 +0000 (15:46 +0300)]
Issue #26623: TypeError message for JSON unserializible object now contains
object's type name, not object's representation.
Based on patch by Mahmoud Lababidi.

8 years agoIssue #17339: Improved TypeError message in bytes constructor.
Serhiy Storchaka [Sun, 10 Apr 2016 11:44:59 +0000 (14:44 +0300)]
Issue #17339: Improved TypeError message in bytes constructor.

8 years agoIssue #26719: More efficient formatting of ints and floats in json.
Serhiy Storchaka [Sun, 10 Apr 2016 11:43:04 +0000 (14:43 +0300)]
Issue #26719: More efficient formatting of ints and floats in json.

8 years agoIssue #26719: More efficient formatting of ints and floats in json.
Serhiy Storchaka [Sun, 10 Apr 2016 11:41:19 +0000 (14:41 +0300)]
Issue #26719: More efficient formatting of ints and floats in json.

8 years agoIssue #25339: PYTHONIOENCODING now has priority over locale in setting the
Serhiy Storchaka [Sun, 10 Apr 2016 11:35:21 +0000 (14:35 +0300)]
Issue #25339: PYTHONIOENCODING now has priority over locale in setting the
error handler for stdin and stdout.

8 years agoIssue #25339: PYTHONIOENCODING now has priority over locale in setting the
Serhiy Storchaka [Sun, 10 Apr 2016 11:34:13 +0000 (14:34 +0300)]
Issue #25339: PYTHONIOENCODING now has priority over locale in setting the
error handler for stdin and stdout.

8 years agoIssue #26712: Merge string_tests cleanup from 3.5
Martin Panter [Sun, 10 Apr 2016 09:16:23 +0000 (09:16 +0000)]
Issue #26712: Merge string_tests cleanup from 3.5

8 years agoRemove relics of str8 (became bytes) and buffer (bytearray) type tests
Martin Panter [Sun, 10 Apr 2016 08:48:51 +0000 (08:48 +0000)]
Remove relics of str8 (became bytes) and buffer (bytearray) type tests

Remove redundant tests now that str is unicode.

8 years agoIssue #26712: Unify (r)split, (l/r)strip tests into string_tests
Martin Panter [Sun, 10 Apr 2016 08:45:26 +0000 (08:45 +0000)]
Issue #26712: Unify (r)split, (l/r)strip tests into string_tests

This eliminates a few redundant test cases.

8 years agoIssue #25609: Double back-ticks to avoid “make check” buildbot failure
Martin Panter [Sun, 10 Apr 2016 02:41:25 +0000 (02:41 +0000)]
Issue #25609: Double back-ticks to avoid “make check” buildbot failure

8 years agoIssue #21069: Merge test_fileno() from 3.5
Martin Panter [Sat, 9 Apr 2016 14:05:19 +0000 (14:05 +0000)]
Issue #21069: Merge test_fileno() from 3.5

8 years agoIssue #21069: Move test_fileno() from test_urllibnet and rewrite it
Martin Panter [Sat, 9 Apr 2016 14:03:17 +0000 (14:03 +0000)]
Issue #21069: Move test_fileno() from test_urllibnet and rewrite it

* 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

8 years agoIssue #26609: Merge HTTP tests from 3.5
Martin Panter [Sat, 9 Apr 2016 12:51:41 +0000 (12:51 +0000)]
Issue #26609: Merge HTTP tests from 3.5

8 years agoMerge 3.5: fcntl doc
Victor Stinner [Sat, 9 Apr 2016 09:33:53 +0000 (11:33 +0200)]
Merge 3.5: fcntl doc

8 years agoUpdate fcntl doc: replace IOError with OSError
Victor Stinner [Sat, 9 Apr 2016 09:32:58 +0000 (11:32 +0200)]
Update fcntl doc: replace IOError with OSError

Issue #26716. IOError is a deprecated alias to OSError since Python 3.3.

8 years agoIssue #17264: Fix cross refs and a markup error in extending/building.rst
Berker Peksag [Sat, 9 Apr 2016 06:08:26 +0000 (09:08 +0300)]
Issue #17264: Fix cross refs and a markup error in extending/building.rst

8 years agoIssue #17264: Fix cross refs and a markup error in extending/building.rst
Berker Peksag [Sat, 9 Apr 2016 06:08:05 +0000 (09:08 +0300)]
Issue #17264: Fix cross refs and a markup error in extending/building.rst

8 years agoIssue #16329: Add .webm to mimetypes.types_map
Berker Peksag [Sat, 9 Apr 2016 05:00:53 +0000 (08:00 +0300)]
Issue #16329: Add .webm to mimetypes.types_map

Patch by Giampaolo Rodola'.

8 years agoIssue #16329: Add .webm to mimetypes.types_map
Berker Peksag [Sat, 9 Apr 2016 05:00:20 +0000 (08:00 +0300)]
Issue #16329: Add .webm to mimetypes.types_map

Patch by Giampaolo Rodola'.

8 years agoIssue #26609: Fix HTTP server tests to request an absolute URL path
Martin Panter [Sat, 9 Apr 2016 04:56:10 +0000 (04:56 +0000)]
Issue #26609: Fix HTTP server tests to request an absolute URL path

8 years agoIssue #13952: Add .csv to mimetypes.types_map
Berker Peksag [Sat, 9 Apr 2016 04:53:00 +0000 (07:53 +0300)]
Issue #13952: Add .csv to mimetypes.types_map

Patch by Geoff Wilson.

8 years agoIssue #13952: Add .csv to mimetypes.types_map
Berker Peksag [Sat, 9 Apr 2016 04:52:05 +0000 (07:52 +0300)]
Issue #13952: Add .csv to mimetypes.types_map

Patch by Geoff Wilson.

8 years agoIssue #26687: Use Py_RETURN_NONE macro in sqlite3 module
Berker Peksag [Sat, 9 Apr 2016 04:34:39 +0000 (07:34 +0300)]
Issue #26687: Use Py_RETURN_NONE macro in sqlite3 module

8 years agoMerge w/ 3.5 for issue #26587
Brett Cannon [Fri, 8 Apr 2016 22:08:01 +0000 (15:08 -0700)]
Merge w/ 3.5 for issue #26587

8 years agoIssue #26587: Remove an incorrect statement from the docs
Brett Cannon [Fri, 8 Apr 2016 22:06:54 +0000 (15:06 -0700)]
Issue #26587: Remove an incorrect statement from the docs

8 years agoIssue #26587: Allow .pth files to specify file paths as well as
Brett Cannon [Fri, 8 Apr 2016 22:04:28 +0000 (15:04 -0700)]
Issue #26587: Allow .pth files to specify file paths as well as
directories.

Thanks to Wolfgang Langner for the bug report and initial version of
the patch.

8 years agoIssue #26668: Remove the redundant Lib/test/test_importlib/regrtest.py
Brett Cannon [Fri, 8 Apr 2016 19:29:05 +0000 (12:29 -0700)]
Issue #26668: Remove the redundant Lib/test/test_importlib/regrtest.py

8 years agoNormalize whitespace
Brett Cannon [Fri, 8 Apr 2016 19:16:16 +0000 (12:16 -0700)]
Normalize whitespace

8 years agoIssue #25609: Introduce contextlib.AbstractContextManager and
Brett Cannon [Fri, 8 Apr 2016 19:15:27 +0000 (12:15 -0700)]
Issue #25609: Introduce contextlib.AbstractContextManager and
typing.ContextManager.

8 years agoIssue #26709: Fixed Y2038 problem in loading binary PLists.
Serhiy Storchaka [Fri, 8 Apr 2016 12:00:33 +0000 (15:00 +0300)]
Issue #26709: Fixed Y2038 problem in loading binary PLists.

8 years agoIssue #26709: Fixed Y2038 problem in loading binary PLists.
Serhiy Storchaka [Fri, 8 Apr 2016 12:00:02 +0000 (15:00 +0300)]
Issue #26709: Fixed Y2038 problem in loading binary PLists.

8 years agoIssue #26671: Fixed tests for changed error messages.
Serhiy Storchaka [Fri, 8 Apr 2016 05:48:20 +0000 (08:48 +0300)]
Issue #26671: Fixed tests for changed error messages.

8 years agoIssue #26257: Merge buffer_tests cleanup from 3.5
Martin Panter [Fri, 8 Apr 2016 00:16:33 +0000 (00:16 +0000)]
Issue #26257: Merge buffer_tests cleanup from 3.5

8 years agoIssue #26671: Fixed #ifdef indentation.
Serhiy Storchaka [Wed, 6 Apr 2016 20:02:46 +0000 (23:02 +0300)]
Issue #26671: Fixed #ifdef indentation.

8 years agoBacked out changeset 8dc144e47252
Serhiy Storchaka [Wed, 6 Apr 2016 20:02:25 +0000 (23:02 +0300)]
Backed out changeset 8dc144e47252

8 years agoIssue #26671: Fixed #ifdef indentation.
Serhiy Storchaka [Wed, 6 Apr 2016 19:55:31 +0000 (22:55 +0300)]
Issue #26671: Fixed #ifdef indentation.

8 years agoAdds version info to all signed binaries on Windows
Steve Dower [Wed, 6 Apr 2016 19:36:23 +0000 (12:36 -0700)]
Adds version info to all signed binaries on Windows

8 years agoAdds version info to all signed binaries on Windows.
Steve Dower [Wed, 6 Apr 2016 19:35:24 +0000 (12:35 -0700)]
Adds version info to all signed binaries on Windows.

8 years agoIssue #26671: Enhanced path_converter.
Serhiy Storchaka [Wed, 6 Apr 2016 19:17:52 +0000 (22:17 +0300)]
Issue #26671: Enhanced path_converter.

Exceptions raised during converting argument of correct type are no longer
overridded with TypeError. Some error messages are now more detailed.

8 years agoIssue #22570: Renamed Py_SETREF to Py_XSETREF.
Serhiy Storchaka [Wed, 6 Apr 2016 06:50:03 +0000 (09:50 +0300)]
Issue #22570: Renamed Py_SETREF to Py_XSETREF.

8 years agoIssue #22570: Renamed Py_SETREF to Py_XSETREF.
Serhiy Storchaka [Wed, 6 Apr 2016 06:45:48 +0000 (09:45 +0300)]
Issue #22570: Renamed Py_SETREF to Py_XSETREF.

8 years agoIssue #26257: Eliminate buffer_tests.py and fix ByteArrayAsStringTest
Martin Panter [Wed, 6 Apr 2016 06:37:17 +0000 (06:37 +0000)]
Issue #26257: Eliminate buffer_tests.py and fix ByteArrayAsStringTest

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.

8 years agoMerge typing.py 3.5->3.6 (Text, ItemsView).
Guido van Rossum [Tue, 5 Apr 2016 21:57:03 +0000 (14:57 -0700)]
Merge typing.py 3.5->3.6 (Text, ItemsView).

8 years agoAdd Text=str. Make ItemsView derive from AbstractSet, not Set (which is the concrete...
Guido van Rossum [Tue, 5 Apr 2016 21:54:25 +0000 (14:54 -0700)]
Add Text=str. Make ItemsView derive from AbstractSet, not Set (which is the concrete set).

8 years agoMerge upstream typing.py changes from 3.5 branch.
Guido van Rossum [Tue, 5 Apr 2016 15:35:22 +0000 (08:35 -0700)]
Merge upstream typing.py changes from 3.5 branch.

8 years agoMany changes from the upstream repo (https://github.com/python/typing).
Guido van Rossum [Tue, 5 Apr 2016 15:28:52 +0000 (08:28 -0700)]
Many changes from the upstream repo (https://github.com/python/typing).

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).

8 years agoIssue #6953: Merge readline doc from 3.5
Martin Panter [Tue, 5 Apr 2016 10:17:38 +0000 (10:17 +0000)]
Issue #6953: Merge readline doc from 3.5

8 years agoIssue #6953: Rearrange and expand Readline module documentation
Martin Panter [Tue, 5 Apr 2016 07:37:22 +0000 (07:37 +0000)]
Issue #6953: Rearrange and expand Readline module documentation

* 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

8 years agoMerge typo fixes from 3.5
Martin Panter [Tue, 5 Apr 2016 06:20:32 +0000 (06:20 +0000)]
Merge typo fixes from 3.5

8 years agoFix typos in documentation and comments
Martin Panter [Tue, 5 Apr 2016 06:19:42 +0000 (06:19 +0000)]
Fix typos in documentation and comments

8 years agoAdd collections.Reversible. Patch by Ivan Levkivskyi. Fixes issue #25987.
Guido van Rossum [Mon, 4 Apr 2016 17:59:29 +0000 (10:59 -0700)]
Add collections.Reversible. Patch by Ivan Levkivskyi. Fixes issue #25987.

8 years agoIssue #23735: Merge sighandler_t fix from 3.5
Martin Panter [Sun, 3 Apr 2016 08:04:35 +0000 (08:04 +0000)]
Issue #23735: Merge sighandler_t fix from 3.5

8 years agoIssue #23735: Avoid sighandler_t Gnu-ism
Martin Panter [Sun, 3 Apr 2016 08:00:49 +0000 (08:00 +0000)]
Issue #23735: Avoid sighandler_t Gnu-ism

8 years agoIssue #23735: Merge Readline resize handling from 3.5
Martin Panter [Sun, 3 Apr 2016 03:19:27 +0000 (03:19 +0000)]
Issue #23735: Merge Readline resize handling from 3.5