]> granicus.if.org Git - python/log
python
8 years agoIssue #26898: Fix typo in math.isclose() docstring
Berker Peksag [Sun, 1 May 2016 08:27:59 +0000 (11:27 +0300)]
Issue #26898: Fix typo in math.isclose() docstring

Patch by Marco Buttu.

8 years agoIssue #26898: Fix typo in math.isclose() docstring
Berker Peksag [Sun, 1 May 2016 08:27:37 +0000 (11:27 +0300)]
Issue #26898: Fix typo in math.isclose() docstring

Patch by Marco Buttu.

8 years agoIssue #23960: Cleanup args and kwargs on error in PyErr_SetImportError
Berker Peksag [Sun, 1 May 2016 06:06:57 +0000 (09:06 +0300)]
Issue #23960: Cleanup args and kwargs on error in PyErr_SetImportError

Patch by Ofer Schwarz.

8 years agoIssue #23960: Cleanup args and kwargs on error in PyErr_SetImportError
Berker Peksag [Sun, 1 May 2016 06:06:36 +0000 (09:06 +0300)]
Issue #23960: Cleanup args and kwargs on error in PyErr_SetImportError

Patch by Ofer Schwarz.

8 years agoIssue #24114: Fix an uninitialized variable in `ctypes.util`.
Meador Inge [Sun, 1 May 2016 03:17:22 +0000 (22:17 -0500)]
Issue #24114: Fix an uninitialized variable in `ctypes.util`.

The bug only occurs on SunOS when the ctypes implementation searches
for the `crle` program.  Patch by Xiang Zhang.  Tested on SunOS by
Kees Bos.

8 years agoIssue #24114: Fix an uninitialized variable in `ctypes.util`.
Meador Inge [Sun, 1 May 2016 02:56:59 +0000 (21:56 -0500)]
Issue #24114: Fix an uninitialized variable in `ctypes.util`.

The bug only occurs on SunOS when the ctypes implementation searches
for the `crle` program.  Patch by Xiang Zhang.  Tested on SunOS by
Kees Bos.

8 years agoIssue #26864: Merge no_proxy fixes from 3.5
Martin Panter [Sat, 30 Apr 2016 01:30:57 +0000 (01:30 +0000)]
Issue #26864: Merge no_proxy fixes from 3.5

8 years agoIssue #26864: Fix case insensitivity and suffix comparison with no_proxy
Martin Panter [Sat, 30 Apr 2016 01:03:40 +0000 (01:03 +0000)]
Issue #26864: Fix case insensitivity and suffix comparison with no_proxy

Patch by Xiang Zhang.

8 years agoIssue #13436: Add a test to make sure that ast.ImportFrom(level=None) works
Berker Peksag [Fri, 29 Apr 2016 16:50:02 +0000 (19:50 +0300)]
Issue #13436: Add a test to make sure that ast.ImportFrom(level=None) works

8 years agoIssue #25551: Test condition behavior instead of its internals
Berker Peksag [Fri, 29 Apr 2016 14:25:51 +0000 (17:25 +0300)]
Issue #25551: Test condition behavior instead of its internals

test_reset_internal_locks was looking at Event's _cond._lock. This
makes it harder to change internals of the Condition object and
makes the test fragile.

The test was added by Nir Soffer in 6108d30dde21.

Patch by Nir Soffer.

8 years agoIssue #25551: Test condition behavior instead of its internals
Berker Peksag [Fri, 29 Apr 2016 14:25:29 +0000 (17:25 +0300)]
Issue #25551: Test condition behavior instead of its internals

test_reset_internal_locks was looking at Event's _cond._lock. This
makes it harder to change internals of the Condition object and
makes the test fragile.

The test was added by Nir Soffer in 6108d30dde21.

Patch by Nir Soffer.

8 years agoFix typos. Reported by andportnoy on GitHub.
Berker Peksag [Fri, 29 Apr 2016 13:54:10 +0000 (16:54 +0300)]
Fix typos. Reported by andportnoy on GitHub.

8 years agoIssue #24902: Print server URL on http.server startup
Berker Peksag [Fri, 29 Apr 2016 13:48:11 +0000 (16:48 +0300)]
Issue #24902: Print server URL on http.server startup

Initial patch by Felix Kaiser.

8 years agoIssue #26322: Document typing.Set, patch by Joseph Moran
Berker Peksag [Fri, 29 Apr 2016 11:41:41 +0000 (14:41 +0300)]
Issue #26322: Document typing.Set, patch by Joseph Moran

8 years agoIssue #26322: Document typing.Set, patch by Joseph Moran
Berker Peksag [Fri, 29 Apr 2016 11:41:16 +0000 (14:41 +0300)]
Issue #26322: Document typing.Set, patch by Joseph Moran

8 years agoRemoved unused initialization and the uninteresting comment.
Raymond Hettinger [Fri, 29 Apr 2016 08:37:05 +0000 (01:37 -0700)]
Removed unused initialization and the uninteresting comment.

8 years agoIssue #26880: Removed redundant checks in set.__init__.
Serhiy Storchaka [Fri, 29 Apr 2016 08:31:52 +0000 (11:31 +0300)]
Issue #26880: Removed redundant checks in set.__init__.

8 years agoIssue #26822: Decreased an overhead of using _PyArg_NoKeywords() in calls of
Serhiy Storchaka [Fri, 29 Apr 2016 06:12:25 +0000 (09:12 +0300)]
Issue #26822: Decreased an overhead of using _PyArg_NoKeywords() in calls of
itemgetter, attrgetter and methodcaller objects.

8 years agoIssue #26822: Decreased an overhead of using _PyArg_NoKeywords() in calls of
Serhiy Storchaka [Fri, 29 Apr 2016 06:10:55 +0000 (09:10 +0300)]
Issue #26822: Decreased an overhead of using _PyArg_NoKeywords() in calls of
itemgetter, attrgetter and methodcaller objects.

8 years agoCloses #26875: Merge with 3.5
Zachary Ware [Thu, 28 Apr 2016 19:47:33 +0000 (14:47 -0500)]
Closes #26875: Merge with 3.5

8 years agoIssue #26875: Fix mmap example
Zachary Ware [Thu, 28 Apr 2016 19:47:12 +0000 (14:47 -0500)]
Issue #26875: Fix mmap example

Patch by Xiang Zhang.

8 years agoCloses #26874: Merge with 3.5
Zachary Ware [Thu, 28 Apr 2016 19:40:08 +0000 (14:40 -0500)]
Closes #26874: Merge with 3.5

8 years agoIssue #26874: Simplify the divmod docstring
Zachary Ware [Thu, 28 Apr 2016 19:39:50 +0000 (14:39 -0500)]
Issue #26874: Simplify the divmod docstring

8 years agoCloses #26874: Merge with 3.5
Zachary Ware [Thu, 28 Apr 2016 19:25:32 +0000 (14:25 -0500)]
Closes #26874: Merge with 3.5

8 years agoIssue #26874: Fix divmod docstring
Zachary Ware [Thu, 28 Apr 2016 19:24:55 +0000 (14:24 -0500)]
Issue #26874: Fix divmod docstring

8 years agoIssue #25788: fileinput.hook_encoded() now supports an "errors" argument
Serhiy Storchaka [Wed, 27 Apr 2016 20:13:46 +0000 (23:13 +0300)]
Issue #25788: fileinput.hook_encoded() now supports an "errors" argument
for passing to open.  Original patch by Joseph Hackman.

8 years agofileinput.hook_encoded() uses builtin open(), not codecs.open().
Serhiy Storchaka [Wed, 27 Apr 2016 20:06:41 +0000 (23:06 +0300)]
fileinput.hook_encoded() uses builtin open(), not codecs.open().

8 years agofileinput.hook_encoded() uses builtin open(), not codecs.open().
Serhiy Storchaka [Wed, 27 Apr 2016 20:06:15 +0000 (23:06 +0300)]
fileinput.hook_encoded() uses builtin open(), not codecs.open().

8 years agoIssue #26863: HAVE_FACCESSAT should (currently) not be defined on Android.
Stefan Krah [Tue, 26 Apr 2016 15:04:18 +0000 (17:04 +0200)]
Issue #26863: HAVE_FACCESSAT should (currently) not be defined on Android.

8 years agoIssue #26854: Android has a different include path for soundcard.h.
Stefan Krah [Tue, 26 Apr 2016 14:48:48 +0000 (16:48 +0200)]
Issue #26854: Android has a different include path for soundcard.h.

8 years agoIssue #26846: Post commit cleanup.
Stefan Krah [Tue, 26 Apr 2016 14:34:41 +0000 (16:34 +0200)]
Issue #26846: Post commit cleanup.

8 years agoIssue #26857: Workaround for missing symbol "gethostbyaddr_r" on Android.
Stefan Krah [Tue, 26 Apr 2016 14:20:17 +0000 (16:20 +0200)]
Issue #26857: Workaround for missing symbol "gethostbyaddr_r" on Android.

8 years agoIssue #20598: Merge argparse docs from 3.5
Martin Panter [Tue, 26 Apr 2016 11:47:10 +0000 (11:47 +0000)]
Issue #20598: Merge argparse docs from 3.5

8 years agoIssue #20598: Replace trivial split() calls with lists in argparse docs
Martin Panter [Tue, 26 Apr 2016 11:41:25 +0000 (11:41 +0000)]
Issue #20598: Replace trivial split() calls with lists in argparse docs

8 years agoIssue #25349, #26249: Fix memleak in formatfloat()
Victor Stinner [Tue, 26 Apr 2016 10:35:13 +0000 (12:35 +0200)]
Issue #25349, #26249: Fix memleak in formatfloat()

8 years agoIssue #20306: Android is the only system that returns NULL for the pw_passwd
Stefan Krah [Tue, 26 Apr 2016 09:43:21 +0000 (11:43 +0200)]
Issue #20306:  Android is the only system that returns NULL for the pw_passwd
field.  Rather than cluttering the tests, translate the arguably more correct
"None" to an empty string.

8 years agomerge
Raymond Hettinger [Tue, 26 Apr 2016 08:11:28 +0000 (01:11 -0700)]
merge

8 years agoIssue #24715: Improve sort stability example
Raymond Hettinger [Tue, 26 Apr 2016 08:11:10 +0000 (01:11 -0700)]
Issue #24715: Improve sort stability example

8 years agoIssue #16394: Note the tee() pure python equivalent is only a rough approximation.
Raymond Hettinger [Tue, 26 Apr 2016 07:10:00 +0000 (00:10 -0700)]
Issue #16394:  Note the tee() pure python equivalent is only a rough approximation.

8 years agoIssue #26634: recursive_repr() now sets __qualname__ of wrapper.
Serhiy Storchaka [Tue, 26 Apr 2016 06:31:11 +0000 (09:31 +0300)]
Issue #26634: recursive_repr() now sets __qualname__ of wrapper.
Patch by Xiang Zhang.

8 years agoIssue #26634: recursive_repr() now sets __qualname__ of wrapper.
Serhiy Storchaka [Tue, 26 Apr 2016 06:30:44 +0000 (09:30 +0300)]
Issue #26634: recursive_repr() now sets __qualname__ of wrapper.
Patch by Xiang Zhang.

8 years agoIssue #22747: Workaround for systems without langinfo.h.
Stefan Krah [Mon, 25 Apr 2016 23:56:50 +0000 (01:56 +0200)]
Issue #22747: Workaround for systems without langinfo.h.

8 years agoIssue #20306: The pw_gecos and pw_passwd fields are not required by POSIX.
Stefan Krah [Mon, 25 Apr 2016 23:09:18 +0000 (01:09 +0200)]
Issue #20306: The pw_gecos and pw_passwd fields are not required by POSIX.
If they aren't present, set them to an empty string.

8 years agoIssue #26846: Workaround for non-standard stdlib.h on Android.
Stefan Krah [Mon, 25 Apr 2016 20:48:42 +0000 (22:48 +0200)]
Issue #26846: Workaround for non-standard stdlib.h on Android.

8 years agoIssue #17905: Do not guard locale include with HAVE_LANGINFO_H.
Stefan Krah [Mon, 25 Apr 2016 19:38:53 +0000 (21:38 +0200)]
Issue #17905: Do not guard locale include with HAVE_LANGINFO_H.

8 years agomerge 3.5
Senthil Kumaran [Mon, 25 Apr 2016 15:18:07 +0000 (08:18 -0700)]
merge 3.5

Issue #26804: urllib.request will prefer lower_case proxy environment variables
over UPPER_CASE or Mixed_Case ones.

Patch contributed by Hans-Peter Jansen. Reviewed by Martin Panter and Senthil Kumaran.

8 years agoIssue #26804: urllib.request will prefer lower_case proxy environment variables
Senthil Kumaran [Mon, 25 Apr 2016 15:16:23 +0000 (08:16 -0700)]
Issue #26804: urllib.request will prefer lower_case proxy environment variables
over UPPER_CASE or Mixed_Case ones.

Patch contributed by Hans-Peter Jansen. Reviewed by Martin Panter and Senthil Kumaran.

8 years agoMerge with 3.5
Zachary Ware [Mon, 25 Apr 2016 14:27:49 +0000 (09:27 -0500)]
Merge with 3.5

8 years agoFileExistsError is raised by mkdir when dir exists
Zachary Ware [Mon, 25 Apr 2016 14:27:27 +0000 (09:27 -0500)]
FileExistsError is raised by mkdir when dir exists

Reported by Saul Spatz on docs@

8 years agoIssue #23662: Document default value of RFC 2109 attributes
Berker Peksag [Mon, 25 Apr 2016 11:32:41 +0000 (14:32 +0300)]
Issue #23662: Document default value of RFC 2109 attributes

8 years agoIssue #23662: Document default value of RFC 2109 attributes
Berker Peksag [Mon, 25 Apr 2016 11:32:19 +0000 (14:32 +0300)]
Issue #23662: Document default value of RFC 2109 attributes

8 years agoRemove outdated TkVersion checks.
Serhiy Storchaka [Mon, 25 Apr 2016 10:49:11 +0000 (13:49 +0300)]
Remove outdated TkVersion checks.

Minimal supported Tcl/Tk version is 8.4, and this is checked in _tkinter.c.

8 years agoMerge 3.5
Serhiy Storchaka [Mon, 25 Apr 2016 05:58:59 +0000 (08:58 +0300)]
Merge 3.5

8 years agoIssue #26837: assertSequenceEqual() now correctly outputs non-stringified
Serhiy Storchaka [Mon, 25 Apr 2016 05:58:25 +0000 (08:58 +0300)]
Issue #26837: assertSequenceEqual() now correctly outputs non-stringified
differing items (like bytes in the -b mode).  This affects assertListEqual()
and assertTupleEqual().

8 years agoRemoved unused imports.
Serhiy Storchaka [Sun, 24 Apr 2016 21:12:32 +0000 (00:12 +0300)]
Removed unused imports.

8 years agoRemove more unused imports in tests.
Serhiy Storchaka [Sun, 24 Apr 2016 21:05:30 +0000 (00:05 +0300)]
Remove more unused imports in tests.

8 years agoMerge 3.5
Serhiy Storchaka [Sun, 24 Apr 2016 20:53:16 +0000 (23:53 +0300)]
Merge 3.5

8 years agoRemove duplicated tests.
Serhiy Storchaka [Sun, 24 Apr 2016 20:50:18 +0000 (23:50 +0300)]
Remove duplicated tests.

There were duplicated methods with the same name and body.

8 years agoRemove unused support.run_unittest imports.
Serhiy Storchaka [Sun, 24 Apr 2016 20:42:49 +0000 (23:42 +0300)]
Remove unused support.run_unittest imports.
It is not needed since tests use unittest.main().

8 years agoIssue #26249: Mention PyMem_Malloc() change in What's New in Python 3.6 in the
Victor Stinner [Sun, 24 Apr 2016 20:33:26 +0000 (22:33 +0200)]
Issue #26249: Mention PyMem_Malloc() change in What's New in Python 3.6 in the
Optimizations section.

8 years agoIssue #23277: Remove unused imports in tests.
Serhiy Storchaka [Sun, 24 Apr 2016 18:41:02 +0000 (21:41 +0300)]
Issue #23277: Remove unused imports in tests.

8 years agoIssue #23277: Remove unused support.run_unittest import.
Serhiy Storchaka [Sun, 24 Apr 2016 10:45:58 +0000 (13:45 +0300)]
Issue #23277: Remove unused support.run_unittest import.

8 years agoIssue #23277: Remove more unused sys and os imports.
Serhiy Storchaka [Sun, 24 Apr 2016 10:25:01 +0000 (13:25 +0300)]
Issue #23277: Remove more unused sys and os imports.

8 years agoIssue #26801: shutil.get_terminal_size() now handles the case of stdout is
Serhiy Storchaka [Sun, 24 Apr 2016 06:59:17 +0000 (09:59 +0300)]
Issue #26801: shutil.get_terminal_size() now handles the case of stdout is
reopened on Windows.  Added tests for fallbacks.

8 years agoIssue #26801: shutil.get_terminal_size() now handles the case of stdout is
Serhiy Storchaka [Sun, 24 Apr 2016 06:58:43 +0000 (09:58 +0300)]
Issue #26801: shutil.get_terminal_size() now handles the case of stdout is
reopened on Windows.  Added tests for fallbacks.

8 years agoIssue #24911: Merge socket context manager doc from 3.5
Martin Panter [Sun, 24 Apr 2016 04:55:00 +0000 (04:55 +0000)]
Issue #24911: Merge socket context manager doc from 3.5

8 years agoIssue #23277: Remove unused sys and os imports
Berker Peksag [Sun, 24 Apr 2016 04:31:42 +0000 (07:31 +0300)]
Issue #23277: Remove unused sys and os imports

Patch by Jon Dufresne.

8 years agoIssue #24911: All socket objects are context managers; update examples
Martin Panter [Sun, 24 Apr 2016 04:24:36 +0000 (04:24 +0000)]
Issue #24911: All socket objects are context managers; update examples

8 years agoIssue #23806: Merge susp-ignored.csv from 3.5
Martin Panter [Sun, 24 Apr 2016 04:07:58 +0000 (04:07 +0000)]
Issue #23806: Merge susp-ignored.csv from 3.5

8 years agoIssue #23806: Update susp-ignored.csv
Martin Panter [Sun, 24 Apr 2016 04:06:15 +0000 (04:06 +0000)]
Issue #23806: Update susp-ignored.csv

8 years agoIssue #26041: Remove "will be removed in Python 3.7" from description messages
Berker Peksag [Sun, 24 Apr 2016 00:32:50 +0000 (03:32 +0300)]
Issue #26041: Remove "will be removed in Python 3.7" from description messages

We will keep platform.dist() and platform.linux_distribution() to make porting
from Python 2 easier.

Patch by Kumaripaba Miyurusara Athukorala.

8 years agoIssue #26041: Remove "will be removed in Python 3.7" from description messages
Berker Peksag [Sun, 24 Apr 2016 00:32:24 +0000 (03:32 +0300)]
Issue #26041: Remove "will be removed in Python 3.7" from description messages

We will keep platform.dist() and platform.linux_distribution() to make porting
from Python 2 easier.

Patch by Kumaripaba Miyurusara Athukorala.

8 years agoIssue #19731: Update copyright year in docs.p.o footer
Berker Peksag [Sun, 24 Apr 2016 00:21:32 +0000 (03:21 +0300)]
Issue #19731: Update copyright year in docs.p.o footer

See https://mail.python.org/pipermail/python-legal-sig/2013-November/000059.html
for details.

Patch by Antoine Pitrou.

8 years agoIssue #19731: Update copyright year in docs.p.o footer
Berker Peksag [Sun, 24 Apr 2016 00:21:13 +0000 (03:21 +0300)]
Issue #19731: Update copyright year in docs.p.o footer

See https://mail.python.org/pipermail/python-legal-sig/2013-November/000059.html
for details.

Patch by Antoine Pitrou.

8 years agoIssue #18572: Remove redundant note about surrogates in string escape doc
Berker Peksag [Sun, 24 Apr 2016 00:14:01 +0000 (03:14 +0300)]
Issue #18572: Remove redundant note about surrogates in string escape doc

8 years agoIssue #18572: Remove redundant note about surrogates in string escape doc
Berker Peksag [Sun, 24 Apr 2016 00:13:40 +0000 (03:13 +0300)]
Issue #18572: Remove redundant note about surrogates in string escape doc

8 years agoIssue #18353: Remove PyUnicode_WRITE_CHAR macro link from c-api/unicode.rst
Berker Peksag [Sun, 24 Apr 2016 00:07:03 +0000 (03:07 +0300)]
Issue #18353: Remove PyUnicode_WRITE_CHAR macro link from c-api/unicode.rst

Patch by Corey Brune.

8 years agoIssue #18353: Remove PyUnicode_WRITE_CHAR macro link from c-api/unicode.rst
Berker Peksag [Sun, 24 Apr 2016 00:06:44 +0000 (03:06 +0300)]
Issue #18353: Remove PyUnicode_WRITE_CHAR macro link from c-api/unicode.rst

Patch by Corey Brune.

8 years agoIssue #21382: Clarify signal.signal() documentation on Windows
Berker Peksag [Sat, 23 Apr 2016 23:59:43 +0000 (02:59 +0300)]
Issue #21382: Clarify signal.signal() documentation on Windows

All signal.SIG* constants may not be defined on Windows so a call like

    signal.signal(signal.SIGPIPE, lambda signum, frame: sys.exit(1))

will raise an AttributeError.

8 years agoIssue #21382: Clarify signal.signal() documentation on Windows
Berker Peksag [Sat, 23 Apr 2016 23:59:16 +0000 (02:59 +0300)]
Issue #21382: Clarify signal.signal() documentation on Windows

All signal.SIG* constants may not be defined on Windows so a call like

    signal.signal(signal.SIGPIPE, lambda signum, frame: sys.exit(1))

will raise an AttributeError.

8 years agoIssue #26089: Remove duplicate field 'license' from DistributionMetadata
Berker Peksag [Sat, 23 Apr 2016 22:55:09 +0000 (01:55 +0300)]
Issue #26089: Remove duplicate field 'license' from DistributionMetadata

It was renamed to 'license' in 178d19cff163.

Patch by Augustin Laville.

8 years agoIssue #20112: Improve BaseHTTPRequestHandler.error_message_format documentation
Berker Peksag [Sat, 23 Apr 2016 22:51:31 +0000 (01:51 +0300)]
Issue #20112: Improve BaseHTTPRequestHandler.error_message_format documentation

* Explain how 'error_message_format' is used by 'send_error' method
* Mention that 'responses' is used by 'send_response_only' and 'send_error' methods
* Replace 'class variables' with 'attributes'

Initial patch by Anastasia Filatova.

8 years agoIssue #20112: Improve BaseHTTPRequestHandler.error_message_format documentation
Berker Peksag [Sat, 23 Apr 2016 22:51:02 +0000 (01:51 +0300)]
Issue #20112: Improve BaseHTTPRequestHandler.error_message_format documentation

* Explain how 'error_message_format' is used by 'send_error' method
* Mention that 'responses' is used by 'send_response_only' and 'send_error' methods
* Replace 'class variables' with 'attributes'

Initial patch by Anastasia Filatova.

8 years agoIssue #26822: itemgetter, attrgetter and methodcaller objects no longer
Serhiy Storchaka [Sat, 23 Apr 2016 07:53:43 +0000 (10:53 +0300)]
Issue #26822: itemgetter, attrgetter and methodcaller objects no longer
silently ignore keyword arguments.

8 years agoIssue #26822: itemgetter, attrgetter and methodcaller objects no longer
Serhiy Storchaka [Sat, 23 Apr 2016 07:51:39 +0000 (10:51 +0300)]
Issue #26822: itemgetter, attrgetter and methodcaller objects no longer
silently ignore keyword arguments.

8 years agomerge 3.5 (#26827)
Benjamin Peterson [Sat, 23 Apr 2016 06:43:24 +0000 (23:43 -0700)]
merge 3.5 (#26827)

8 years agofix python 3 mod init function declaration (closes #26827)
Benjamin Peterson [Sat, 23 Apr 2016 06:43:10 +0000 (23:43 -0700)]
fix python 3 mod init function declaration (closes #26827)

8 years agoIssue #26733: Disassembling a class now disassembles class and static methods.
Serhiy Storchaka [Sat, 23 Apr 2016 06:24:29 +0000 (09:24 +0300)]
Issue #26733: Disassembling a class now disassembles class and static methods.
Patch by Xiang Zhang.

8 years agoIssue #26733: Disassembling a class now disassembles class and static methods.
Serhiy Storchaka [Sat, 23 Apr 2016 06:23:52 +0000 (09:23 +0300)]
Issue #26733: Disassembling a class now disassembles class and static methods.
Patch by Xiang Zhang.

8 years agomerge 3.5
Senthil Kumaran [Sat, 23 Apr 2016 03:35:40 +0000 (20:35 -0700)]
merge 3.5

Document no_proxy environment variable in python 3.x #issue23806

8 years agoIssue23806 - Document the no_proxy environment variable in Python 3 docs.
Senthil Kumaran [Sat, 23 Apr 2016 03:34:42 +0000 (20:34 -0700)]
Issue23806 - Document the no_proxy environment variable in Python 3 docs.

8 years agoIssue #22359: Merge cross-compilation fix from 3.5
Martin Panter [Sat, 23 Apr 2016 01:18:54 +0000 (01:18 +0000)]
Issue #22359: Merge cross-compilation fix from 3.5

8 years agoIssue #22359: Disable running cross-compiled _freeze_importlib and pgen
Martin Panter [Sat, 23 Apr 2016 00:58:44 +0000 (00:58 +0000)]
Issue #22359: Disable running cross-compiled _freeze_importlib and pgen

Patch by Xavier de Gaye.

8 years agoIssue #26249: Try test_capi on Windows
Victor Stinner [Fri, 22 Apr 2016 16:52:22 +0000 (18:52 +0200)]
Issue #26249: Try test_capi on Windows

8 years agoPyMem_Malloc() now uses the fast pymalloc allocator
Victor Stinner [Fri, 22 Apr 2016 14:26:23 +0000 (16:26 +0200)]
PyMem_Malloc() now uses the fast pymalloc allocator

Issue #26249: PyMem_Malloc() allocator family now uses the pymalloc allocator
rather than system malloc(). Applications calling PyMem_Malloc() without
holding the GIL can now crash: use PYTHONMALLOC=debug environment variable to
validate the usage of memory allocators in your application.

8 years ago[minor] Doc fix in old python doc.
Senthil Kumaran [Thu, 21 Apr 2016 07:23:08 +0000 (00:23 -0700)]
[minor] Doc fix in old python doc.

8 years agoMerge 3.5
Victor Stinner [Wed, 20 Apr 2016 16:26:40 +0000 (18:26 +0200)]
Merge 3.5

8 years agogdb/libpython.py: inline _type_void_ptr()
Victor Stinner [Wed, 20 Apr 2016 16:26:12 +0000 (18:26 +0200)]
gdb/libpython.py: inline _type_void_ptr()

The function was only called in _sizeof_void_p()

8 years agoMerge 3.5
Victor Stinner [Wed, 20 Apr 2016 16:23:59 +0000 (18:23 +0200)]
Merge 3.5

8 years agoIssue #26799: Fix typo in Misc/NEWS
Victor Stinner [Wed, 20 Apr 2016 16:23:49 +0000 (18:23 +0200)]
Issue #26799: Fix typo in Misc/NEWS