]> granicus.if.org Git - python/log
python
9 years agoIssue #26157: Fix typos in asyncio-eventloop.rst
Berker Peksag [Wed, 20 Jan 2016 05:14:22 +0000 (07:14 +0200)]
Issue #26157: Fix typos in asyncio-eventloop.rst

Initial patch by Carlo Beccarini.

9 years agoMerge update to pip/setuptools
Donald Stufft [Wed, 20 Jan 2016 01:14:39 +0000 (20:14 -0500)]
Merge update to pip/setuptools

9 years agoUpdate pip to 8.0.0 and setuptools to 19.4
Donald Stufft [Wed, 20 Jan 2016 01:13:51 +0000 (20:13 -0500)]
Update pip to 8.0.0 and setuptools to 19.4

9 years agoIssue #25935: Garbage collector now breaks reference loops with OrderedDict.
Serhiy Storchaka [Tue, 19 Jan 2016 12:46:25 +0000 (14:46 +0200)]
Issue #25935: Garbage collector now breaks reference loops with OrderedDict.

9 years agoIssue #16620: Fixed AttributeError in msilib.Directory.glob().
Serhiy Storchaka [Tue, 19 Jan 2016 11:55:36 +0000 (13:55 +0200)]
Issue #16620: Fixed AttributeError in msilib.Directory.glob().

9 years agoFix BytecodeTestCase.assertNotInBytecode()
Victor Stinner [Tue, 19 Jan 2016 07:48:48 +0000 (08:48 +0100)]
Fix BytecodeTestCase.assertNotInBytecode()

Issue #11816: Fix bytecode_helper to handle correctly errors. Don't use
unassigned variables.

9 years agoset tp_new from the class in the hierarchy that actually owns the descriptor (closes...
Benjamin Peterson [Tue, 19 Jan 2016 05:11:18 +0000 (21:11 -0800)]
set tp_new from the class in the hierarchy that actually owns the descriptor (closes #25731)

Debugging by Eryk Sun.

9 years agoissue23962 - Reference the correct TimeoutError in concurrent.futures documentation.
Senthil Kumaran [Tue, 19 Jan 2016 02:45:00 +0000 (18:45 -0800)]
issue23962 - Reference the correct TimeoutError in concurrent.futures documentation.

Patch contributed by Ryder Lewis.

9 years agoIssue #25859: Reimplement NNTP test_starttls() using local server
Martin Panter [Tue, 19 Jan 2016 01:10:58 +0000 (01:10 +0000)]
Issue #25859: Reimplement NNTP test_starttls() using local server

The previous test relied on a remote server, which currently seems to be
shutting the connection down once TLS has been set up, causing an EOFError.
Now the test is implemented using a minimal NNTP server running in a
background thread.

9 years agoIssue #25366: Skip test_with_pip when threading module is not available
Berker Peksag [Tue, 19 Jan 2016 00:01:53 +0000 (02:01 +0200)]
Issue #25366: Skip test_with_pip when threading module is not available

Some dependencies of pip import threading module unconditionally so
we need to skip the test to make buildbots happy.

9 years agoAdded exceptins for testing non-reversible import mapping for Issue #26013.
Serhiy Storchaka [Mon, 18 Jan 2016 20:33:44 +0000 (22:33 +0200)]
Added exceptins for testing non-reversible import mapping for Issue #26013.

9 years agoIssue #26013: Added compatibility with broken protocol 2 pickles created
Serhiy Storchaka [Mon, 18 Jan 2016 19:35:22 +0000 (21:35 +0200)]
Issue #26013: Added compatibility with broken protocol 2 pickles created
in old Python 3 versions (3.4.3 and lower).

9 years agoIssue #9006: Added tests for XML RPC with non-UTF-8 encoding.
Serhiy Storchaka [Mon, 18 Jan 2016 17:39:26 +0000 (19:39 +0200)]
Issue #9006: Added tests for XML RPC with non-UTF-8 encoding.

9 years agoIssue26017 - Suggest enclosing command args in double quotes when using characters...
Senthil Kumaran [Mon, 18 Jan 2016 02:42:13 +0000 (18:42 -0800)]
Issue26017 - Suggest enclosing command args in double quotes when using characters which get interpreted by shell.

9 years agoIssue #25905: Specify 'ascii' encoding for README.txt and NEWS.txt.
Terry Jan Reedy [Sun, 17 Jan 2016 04:44:04 +0000 (23:44 -0500)]
Issue #25905: Specify 'ascii' encoding for README.txt and NEWS.txt.
Re-encode CREDITS.txt to utf-8 and open it with 'utf-8'.

9 years agoIssue26135 - In the tutorial section on modules, reference importlib.reload instead...
Senthil Kumaran [Sun, 17 Jan 2016 02:43:24 +0000 (18:43 -0800)]
Issue26135 - In the tutorial section on modules, reference importlib.reload instead of imp.reload.

9 years agoIssue #26071: bdist_wininst created binaries fail to start and find 32bit Python
Steve Dower [Sat, 16 Jan 2016 21:54:53 +0000 (13:54 -0800)]
Issue #26071: bdist_wininst created binaries fail to start and find 32bit Python

9 years agoIssue #26073: Update the list of magic numbers in launcher
Steve Dower [Sat, 16 Jan 2016 21:48:06 +0000 (13:48 -0800)]
Issue #26073: Update the list of magic numbers in launcher

9 years agoIssue #26065: Excludes venv from library when generating embeddable distro.
Steve Dower [Sat, 16 Jan 2016 21:44:43 +0000 (13:44 -0800)]
Issue #26065: Excludes venv from library when generating embeddable distro.

9 years agoIssue #25850: Use cross-compilation by default for 64-bit Windows.
Steve Dower [Sat, 16 Jan 2016 20:39:10 +0000 (12:39 -0800)]
Issue #25850: Use cross-compilation by default for 64-bit Windows.

9 years agoIssue #25089: Adds short documentation section for modifying an install.
Steve Dower [Sat, 16 Jan 2016 19:58:30 +0000 (11:58 -0800)]
Issue #25089: Adds short documentation section for modifying an install.

9 years ago Issue26035 - Correct the argument names used in the docs of the traceback module...
Senthil Kumaran [Sat, 16 Jan 2016 05:45:17 +0000 (21:45 -0800)]
 Issue26035 - Correct the argument names used in the docs of the traceback module. Make it consistent with module args.

 Patch contributed by Upendra Kumar.

9 years agoIssue #14771: Redirect GDB's stdin to avoid messing the terminal settings
Martin Panter [Sat, 16 Jan 2016 05:18:47 +0000 (05:18 +0000)]
Issue #14771: Redirect GDB's stdin to avoid messing the terminal settings

Otherwise, GDB seems to affect the terminal's foreground process group,
interfering with test_ioctl, which does not expect the foreground process to
change during the test. This change also solves the problem of the tests
being stopped in the shell if test_gdb is run twice in parallel.

9 years agoIssue #26127: Fix links in tokenize documentation; patch by Silent Ghost
Martin Panter [Sat, 16 Jan 2016 04:32:52 +0000 (04:32 +0000)]
Issue #26127: Fix links in tokenize documentation; patch by Silent Ghost

9 years agoMake the error message regex more lenient so that it matches both
Gregory P. Smith [Sat, 16 Jan 2016 01:30:24 +0000 (17:30 -0800)]
Make the error message regex more lenient so that it matches both
"certificate verify failed " and "CERTIFICATE_VERIFY_FAILED " as
some SSL libraries use different text than OpenSSL.

9 years agoMake the error message regex more lenient so that it matches both
Gregory P. Smith [Sat, 16 Jan 2016 01:29:45 +0000 (17:29 -0800)]
Make the error message regex more lenient so that it matches both
"certificate verify failed " and "CERTIFICATE_VERIFY_FAILED " as
some SSL libraries use different text than OpenSSL.

9 years agoIssue #17633: Improve support for namespace packages with zipimport.
Brett Cannon [Fri, 15 Jan 2016 19:22:19 +0000 (11:22 -0800)]
Issue #17633: Improve support for namespace packages with zipimport.

Previously zipimport mistakenly limited namespace support to only the
top-level of the zipfile when it should have supported an arbitrary
depth.

Thanks to Phil Connel for the bug report and initial patch and Mike
Romberg for the final patch.

9 years agoAdd some "used with permission" mentions where external resources are referenced.
Brett Cannon [Fri, 15 Jan 2016 17:53:51 +0000 (09:53 -0800)]
Add some "used with permission" mentions where external resources are referenced.

Permission was validated prior to adding these markings.

9 years agoIssue #26114: Remove a reference to 'Numerical Recipes'.
Brett Cannon [Fri, 15 Jan 2016 17:38:24 +0000 (09:38 -0800)]
Issue #26114: Remove a reference to 'Numerical Recipes'.

While no copyright violation occurred, the license which
'Numerical Recipes' operates under is not amenable to Python,
so to prevent confusion it's easier to simply remove its mention.

9 years agoIssue #25940: Merge ETIMEDOUT fix from 3.4 into 3.5
Martin Panter [Fri, 15 Jan 2016 02:28:59 +0000 (02:28 +0000)]
Issue #25940: Merge ETIMEDOUT fix from 3.4 into 3.5

9 years agoIssue #25940: Merge ETIMEDOUT fix from 3.3 into 3.4
Martin Panter [Fri, 15 Jan 2016 02:18:31 +0000 (02:18 +0000)]
Issue #25940: Merge ETIMEDOUT fix from 3.3 into 3.4

9 years agoIssue #25940: Merge ETIMEDOUT fix from 3.2 into 3.3
Martin Panter [Fri, 15 Jan 2016 02:08:13 +0000 (02:08 +0000)]
Issue #25940: Merge ETIMEDOUT fix from 3.2 into 3.3

9 years agoIssue #25940: On Windows, connecting to port 444 returns ETIMEDOUT
Martin Panter [Fri, 15 Jan 2016 01:16:41 +0000 (01:16 +0000)]
Issue #25940: On Windows, connecting to port 444 returns ETIMEDOUT

9 years agoIssue #25940: Update new SSL tests for self-signed.pythontest.net
Martin Panter [Thu, 14 Jan 2016 13:05:46 +0000 (13:05 +0000)]
Issue #25940: Update new SSL tests for self-signed.pythontest.net

Removed SSL_ERROR_SYSCALL checking from ssl_io_loop() so that the loop can
terminate when unwrap() raises that error.

9 years agoIssue #25940: Merge self-signed.pythontest.net testing from 3.4 into 3.5
Martin Panter [Thu, 14 Jan 2016 13:22:29 +0000 (13:22 +0000)]
Issue #25940: Merge self-signed.pythontest.net testing from 3.4 into 3.5

9 years agodictobject.c(dict_sizeof): Make it static again.
doko@ubuntu.com [Thu, 14 Jan 2016 13:04:59 +0000 (14:04 +0100)]
dictobject.c(dict_sizeof): Make it static again.

9 years agoIssue #25940: Update new SSL tests for self-signed.pythontest.net
Martin Panter [Thu, 14 Jan 2016 12:53:56 +0000 (12:53 +0000)]
Issue #25940: Update new SSL tests for self-signed.pythontest.net

9 years agoIssue #25940: Merge self-signed.pythontest.net testing from 3.3 into 3.4
Martin Panter [Thu, 14 Jan 2016 12:46:49 +0000 (12:46 +0000)]
Issue #25940: Merge self-signed.pythontest.net testing from 3.3 into 3.4

9 years agoIssue #25940: Merge self-signed.pythontest.net testing from 3.2 into 3.3
Martin Panter [Thu, 14 Jan 2016 12:21:02 +0000 (12:21 +0000)]
Issue #25940: Merge self-signed.pythontest.net testing from 3.2 into 3.3

9 years agoIssue #25940: Use self-signed.pythontest.net in SSL tests
Martin Panter [Thu, 14 Jan 2016 09:36:00 +0000 (09:36 +0000)]
Issue #25940: Use self-signed.pythontest.net in SSL tests

This is instead of svn.python.org, whose certificate recently expired, and
whose new certificate uses a different root certificate.

The certificate used at the pythontest server was modifed to set the "basic
constraints" CA flag. This flag seems to be required for test_get_ca_certs_
capath() to work (in Python 3.4+).

Added the new self-signed certificate to capath with the following commands:

cp Lib/test/{selfsigned_pythontestdotnet.pem,capath/}
c_rehash -v Lib/test/capath/
c_rehash -v -old Lib/test/capath/
# Note the generated file names
cp Lib/test/capath/{selfsigned_pythontestdotnet.pem,0e4015b9.0}
mv Lib/test/capath/{selfsigned_pythontestdotnet.pem,ce7b8643.0}

The new server responds with "No route to host" when connecting to port 444.

9 years ago#26001: mention in the tutorial that files in binary mode expect bytes, not str.
Ezio Melotti [Tue, 12 Jan 2016 09:27:30 +0000 (11:27 +0200)]
#26001: mention in the tutorial that files in binary mode expect bytes, not str.

9 years ago#19006: fix wording in unittest docs.
Ezio Melotti [Tue, 12 Jan 2016 09:03:31 +0000 (11:03 +0200)]
#19006: fix wording in unittest docs.

9 years agoIssue #25348: Add --pgo and --pgo-job flags to PCbuild\build.bat
Zachary Ware [Tue, 12 Jan 2016 07:26:50 +0000 (01:26 -0600)]
Issue #25348: Add --pgo and --pgo-job flags to PCbuild\build.bat

9 years agoIssue #25486: Drop "removed in 3.6" wording from inspect.getargspec docs.
Yury Selivanov [Tue, 12 Jan 2016 02:04:50 +0000 (21:04 -0500)]
Issue #25486: Drop "removed in 3.6" wording from inspect.getargspec docs.

9 years ago#25517: fix regex in the regex howto. Patch by Elena Oat.
Ezio Melotti [Mon, 11 Jan 2016 22:09:13 +0000 (00:09 +0200)]
#25517: fix regex in the regex howto.  Patch by Elena Oat.

9 years ago#25991: fix readline example to limit history size. Patch by Daniel Dye.
Ezio Melotti [Mon, 11 Jan 2016 21:30:56 +0000 (23:30 +0200)]
#25991: fix readline example to limit history size.  Patch by Daniel Dye.

9 years agoMerge heads.
Barry Warsaw [Mon, 11 Jan 2016 20:53:19 +0000 (15:53 -0500)]
Merge heads.

9 years ago- Issue #24705: Fix sysconfig._parse_makefile not expanding ${} vars
doko@ubuntu.com [Mon, 11 Jan 2016 20:41:40 +0000 (21:41 +0100)]
- Issue #24705: Fix sysconfig._parse_makefile not expanding ${} vars
  appearing before $() vars.

9 years agoComment out some tests that won't pass now that we've reverted the
Barry Warsaw [Mon, 11 Jan 2016 20:14:53 +0000 (15:14 -0500)]
Comment out some tests that won't pass now that we've reverted the
picklability regression.  Also, as per further discussion, remove the
regressing code.

9 years agoIssue #22995: [UPDATE] Comment out the one of the pickleability tests in
Barry Warsaw [Mon, 11 Jan 2016 18:24:02 +0000 (13:24 -0500)]
Issue #22995: [UPDATE] Comment out the one of the pickleability tests in
_PyObject_GetState() due to regressions observed in Cython-based projects.

9 years agoMerge 3.4 (Issue #26050)
Yury Selivanov [Mon, 11 Jan 2016 17:30:56 +0000 (12:30 -0500)]
Merge 3.4 (Issue #26050)

9 years agoIssue #26050: Add asyncio.StreamReader.readuntil() method.
Yury Selivanov [Mon, 11 Jan 2016 17:28:19 +0000 (12:28 -0500)]
Issue #26050: Add asyncio.StreamReader.readuntil() method.

Patch by Марк Коренберг.

9 years agoFix versionadded to use 3.5.1 only for 3.5 branch
Andrew Svetlov [Mon, 11 Jan 2016 13:41:43 +0000 (15:41 +0200)]
Fix versionadded to use 3.5.1 only for 3.5 branch

9 years agomerge 3.4
Andrew Svetlov [Mon, 11 Jan 2016 12:45:25 +0000 (14:45 +0200)]
merge 3.4

9 years agoDocument asyncio.timeout()
Andrew Svetlov [Mon, 11 Jan 2016 12:40:35 +0000 (14:40 +0200)]
Document asyncio.timeout()

9 years agomerge 3.4
Andrew Svetlov [Mon, 11 Jan 2016 10:25:40 +0000 (12:25 +0200)]
merge 3.4

9 years agoSync with asyncio
Andrew Svetlov [Mon, 11 Jan 2016 10:25:23 +0000 (12:25 +0200)]
Sync with asyncio

9 years agoAdd missing Misc/NEWS update
Andrew Svetlov [Mon, 11 Jan 2016 07:16:58 +0000 (09:16 +0200)]
Add missing Misc/NEWS update

9 years agomerge 3.4
Andrew Svetlov [Mon, 11 Jan 2016 07:09:10 +0000 (09:09 +0200)]
merge 3.4

9 years agoSync with asyncio repo
Andrew Svetlov [Mon, 11 Jan 2016 06:42:49 +0000 (08:42 +0200)]
Sync with asyncio repo

9 years agoIssue #26070: py.exe launcher fails to find in-place built binaries from earlier...
Mark Hammond [Mon, 11 Jan 2016 03:50:22 +0000 (14:50 +1100)]
Issue #26070: py.exe launcher fails to find in-place built binaries from earlier Python versions.

9 years agomerge 3.4 (#26066)
Benjamin Peterson [Sun, 10 Jan 2016 07:56:31 +0000 (23:56 -0800)]
merge 3.4 (#26066)

9 years agodelete old crypto prose (closes #26066)
Benjamin Peterson [Sun, 10 Jan 2016 07:55:47 +0000 (23:55 -0800)]
delete old crypto prose (closes #26066)

9 years agoIssue23675 - A tiny clarification in the MRO glossary term.
Senthil Kumaran [Sun, 10 Jan 2016 06:33:54 +0000 (22:33 -0800)]
Issue23675 - A tiny clarification in the MRO glossary term.

9 years agoIssue #26029: Finish correction.
Terry Jan Reedy [Sat, 9 Jan 2016 17:22:00 +0000 (12:22 -0500)]
Issue #26029: Finish correction.

9 years ago#24789: fix docstring of ctypes.create_string_buffer. Patch by Matheus Vieira Portela.
Ezio Melotti [Sat, 9 Jan 2016 14:08:24 +0000 (16:08 +0200)]
#24789: fix docstring of ctypes.create_string_buffer.  Patch by Matheus Vieira Portela.

9 years agoIssue #26029: Remove extraneous word. Patch by Upendra Kumar.
Terry Jan Reedy [Sat, 9 Jan 2016 08:27:37 +0000 (03:27 -0500)]
Issue #26029: Remove extraneous word.  Patch by Upendra Kumar.

9 years agoIssue #22138: Fix mock.patch behavior when patching descriptors. Restore
Senthil Kumaran [Sat, 9 Jan 2016 07:43:29 +0000 (23:43 -0800)]
Issue #22138: Fix mock.patch behavior when patching descriptors. Restore
original values after patching.

Patch contributed by Sean McCully.

9 years agoIssue20969 - Set the Epub Author and Epub Publisher in Python docs.
Senthil Kumaran [Fri, 8 Jan 2016 09:01:56 +0000 (01:01 -0800)]
Issue20969 - Set the Epub Author and Epub Publisher in Python docs.

9 years agomerge 3.4 (#26046)
Benjamin Peterson [Fri, 8 Jan 2016 06:02:01 +0000 (22:02 -0800)]
merge 3.4 (#26046)

9 years agofix typo in unittest docs (closes #26046)
Benjamin Peterson [Fri, 8 Jan 2016 06:01:26 +0000 (22:01 -0800)]
fix typo in unittest docs (closes #26046)

Patch from Upendra Kumar.

9 years agoenable SSL_MODE_RELEASE_BUFFERS
Benjamin Peterson [Fri, 8 Jan 2016 05:37:37 +0000 (21:37 -0800)]
enable SSL_MODE_RELEASE_BUFFERS

Patch by Cory Benfield.

9 years agoHopeful fix for test_rglob_common on Windows without symlinks. (Merge 3.4->3.5)
Guido van Rossum [Thu, 7 Jan 2016 21:13:04 +0000 (13:13 -0800)]
Hopeful fix for test_rglob_common on Windows without symlinks. (Merge 3.4->3.5)

9 years agoHopeful fix for test_rglob_common on Windows without symlinks.
Guido van Rossum [Thu, 7 Jan 2016 21:12:34 +0000 (13:12 -0800)]
Hopeful fix for test_rglob_common on Windows without symlinks.

9 years agoAdd another try/except PermissionError to avoid depending on listdir order. Fix issue...
Guido van Rossum [Thu, 7 Jan 2016 18:57:37 +0000 (10:57 -0800)]
Add another try/except PermissionError to avoid depending on listdir order. Fix issues #24120 and #26012. (Merge 3.4->3.5)

9 years agoAdd another try/except PermissionError to avoid depending on listdir order. Fix issue...
Guido van Rossum [Thu, 7 Jan 2016 18:56:36 +0000 (10:56 -0800)]
Add another try/except PermissionError to avoid depending on listdir order. Fix issues #24120 and #26012.

9 years agoFix typo in docstring of multiprocessing.spawn.spawn_main()
Berker Peksag [Thu, 7 Jan 2016 17:02:55 +0000 (19:02 +0200)]
Fix typo in docstring of multiprocessing.spawn.spawn_main()

9 years agoIssue #5501: Clarify that invoking freeze_support() on non-Windows platforms has...
Berker Peksag [Thu, 7 Jan 2016 16:45:22 +0000 (18:45 +0200)]
Issue #5501: Clarify that invoking freeze_support() on non-Windows platforms has no effect

Patch by Davin Potts and Camilla Montonen.

9 years agomerge from 3.4
Senthil Kumaran [Thu, 7 Jan 2016 05:30:30 +0000 (21:30 -0800)]
merge from 3.4

Issue16544 - Add a link to an external documentation resource in ast module docs.

9 years agoIssue16544 - Add a link to an external documentation resource in ast module docs.
Senthil Kumaran [Thu, 7 Jan 2016 05:26:53 +0000 (21:26 -0800)]
Issue16544 - Add a link to an external documentation resource in ast module docs.

9 years agoCross-reference os.DirEntry and pathlib.Path for issue #22570.
Guido van Rossum [Wed, 6 Jan 2016 19:36:03 +0000 (11:36 -0800)]
Cross-reference os.DirEntry and pathlib.Path for issue #22570.

9 years agoAdd versionadded (3.4.5) to docs for issue #22570. (Merge 3.4->3.5)
Guido van Rossum [Wed, 6 Jan 2016 19:26:36 +0000 (11:26 -0800)]
Add versionadded (3.4.5) to docs for issue #22570. (Merge 3.4->3.5)

9 years agoAdd versionadded (3.4.5) to docs for issue #22570.
Guido van Rossum [Wed, 6 Jan 2016 19:23:31 +0000 (11:23 -0800)]
Add versionadded (3.4.5) to docs for issue #22570.

9 years agoDocs for issue #22570. (Merge 3.4->3.5)
Guido van Rossum [Wed, 6 Jan 2016 19:16:28 +0000 (11:16 -0800)]
Docs for issue #22570. (Merge 3.4->3.5)

9 years agoDocs for issue #22570.
Guido van Rossum [Wed, 6 Jan 2016 19:15:52 +0000 (11:15 -0800)]
Docs for issue #22570.

9 years agoIssue #22570: Add 'path' attribute to pathlib.Path objects. (Merge 3.4->3.5)
Guido van Rossum [Wed, 6 Jan 2016 19:03:15 +0000 (11:03 -0800)]
Issue #22570: Add 'path' attribute to pathlib.Path objects. (Merge 3.4->3.5)

9 years agoIssue #22570: Add 'path' attribute to pathlib.Path objects.
Guido van Rossum [Wed, 6 Jan 2016 19:01:42 +0000 (11:01 -0800)]
Issue #22570: Add 'path' attribute to pathlib.Path objects.

9 years agoIssue #26012: Don't traverse into symlinks for ** pattern in pathlib.Path.[r]glob...
Guido van Rossum [Wed, 6 Jan 2016 18:35:30 +0000 (10:35 -0800)]
Issue #26012: Don't traverse into symlinks for ** pattern in pathlib.Path.[r]glob(). (Merge 3.4->3.5)

9 years agoIssue #26012: Don't traverse into symlinks for ** pattern in pathlib.Path.[r]glob().
Guido van Rossum [Wed, 6 Jan 2016 18:31:33 +0000 (10:31 -0800)]
Issue #26012: Don't traverse into symlinks for ** pattern in pathlib.Path.[r]glob().

9 years agoIssue #24120: Ignore PermissionError in pathlib.Path.[r]glob(). Ulrich Petri. (Merge...
Guido van Rossum [Wed, 6 Jan 2016 17:51:42 +0000 (09:51 -0800)]
Issue #24120: Ignore PermissionError in pathlib.Path.[r]glob(). Ulrich Petri. (Merge 3.4->3.5)

9 years agoIssue #24120: Ignore PermissionError in pathlib.Path.[r]glob(). Ulrich Petri.
Guido van Rossum [Wed, 6 Jan 2016 17:42:07 +0000 (09:42 -0800)]
Issue #24120: Ignore PermissionError in pathlib.Path.[r]glob(). Ulrich Petri.

9 years agomerge from 3.4
Senthil Kumaran [Mon, 4 Jan 2016 01:58:24 +0000 (17:58 -0800)]
merge from 3.4

Issue24898 - Improve str.find documentation.

Simplify str.find explaination as per Georg Brandl's suggestion.

9 years agoIssue24898 - Improve str.find documentation.
Senthil Kumaran [Mon, 4 Jan 2016 01:57:10 +0000 (17:57 -0800)]
Issue24898 - Improve str.find documentation.

Simplify str.find explaination as per Georg Brandl's suggestion.

9 years agomerge from 3.4
Senthil Kumaran [Sun, 3 Jan 2016 08:43:23 +0000 (00:43 -0800)]
merge from 3.4

Issue21221 - Explain the usage of tm_isdst attribute of mktime, with valid
values and meaning.

Patch contributed by Andrew Scheller.

9 years agoIssue21221 - Explain the usage of tm_isdst attribute of mktime, with valid
Senthil Kumaran [Sun, 3 Jan 2016 08:40:03 +0000 (00:40 -0800)]
Issue21221 - Explain the usage of tm_isdst attribute of mktime, with valid
values and meaning.

Patch contributed by Andrew Scheller.

9 years ago#22709: Use stdin as-is if it does not have a buffer attribute.
R David Murray [Sat, 2 Jan 2016 20:41:41 +0000 (15:41 -0500)]
#22709: Use stdin as-is if it does not have a buffer attribute.

This restores backward compatibility lost in the fix for #21075, and
is better duck typing.

Patch by Akira Li.

9 years agomerge from 3.4
Senthil Kumaran [Sat, 2 Jan 2016 07:26:53 +0000 (23:26 -0800)]
merge from 3.4

Issue25917 : Fix howto links in docs. Point the reference documentation instead of wiki.

9 years agoIssue25917 : Fix howto links in docs. Point the reference documentation instead of...
Senthil Kumaran [Sat, 2 Jan 2016 07:25:58 +0000 (23:25 -0800)]
Issue25917 : Fix howto links in docs. Point the reference documentation instead of wiki.

9 years agoRemove a duplicate test_addresses key:value as identified by Vincent
Gregory P. Smith [Sat, 2 Jan 2016 01:41:46 +0000 (17:41 -0800)]
Remove a duplicate test_addresses key:value as identified by Vincent
Davis reviewing code.

9 years agoUpdate copyrights for 2016.
Ned Deily [Fri, 1 Jan 2016 22:44:30 +0000 (17:44 -0500)]
Update copyrights for 2016.