Commit Graph

78317 Commits

Author SHA1 Message Date
Terry Jan Reedy c305ad7350 Issue #22575: Revise bytearray entry for 2.7. 2014-10-10 13:02:55 -04:00
R David Murray a68109a248 #0712: 2to3 has a new "asserts" fixer that replaces deprecated names of unittest methods.
Patch by Ezio Melotti, docs by Berker Peksag.
2014-10-09 23:13:42 -04:00
Terry Jan Reedy 1375538b1a De-'colour'ize stdlib except for idlelib.configDialog.
Tweak docstrigs and comments in affected functions in idlelib.configHandler.
2014-10-09 18:44:26 -04:00
Victor Stinner a6066ce6b1 Closes #22580: Fix documentation of PyUnicode_Tailmatch()
The result type is Py_ssize_t (and not int).
2014-10-09 11:14:04 +02:00
Terry Jan Reedy 23030dbfe2 Issue 3068: Move idlelib.configDialog action button creation into a separate
method so it can be reused by the new extension dialog.
2014-10-08 20:29:05 -04:00
Terry Jan Reedy 163d7fb842 idlelib.configHandler: revise docstrings, add spaces, use False/True, add some
TODOs (mostly to do after add tests), and make a few other changes.
2014-10-06 23:26:17 -04:00
Benjamin Peterson 05179d528c use source role instead of linking to svn 2014-10-06 21:10:25 -04:00
Benjamin Peterson 3d1f2d3b52 make _socket.socket weakrefable (closes #22569)
Patch from Alex Gaynor.
2014-10-06 14:38:20 -04:00
Georg Brandl 7788dba204 Closes #19071: "self" argument is not the module for module functions in 2.x. 2014-10-06 18:01:02 +02:00
Georg Brandl 436ebf8a52 Closes #16155: fix a few errors in doctest output of the FAQ pages. 2014-10-06 17:51:46 +02:00
Georg Brandl 8d867cb718 Closes #17057: fix grammar in old-style vs new-style class docs. 2014-10-06 17:46:43 +02:00
Florent Xicluna ff05e52237 Issue #1686: Fix string.Template when overriding the pattern attribute. 2010-09-18 23:34:07 +00:00
Georg Brandl 71ede5047d Closes #14303: socket.makefile() does not call dup() anymore on the socket fd. 2014-10-06 16:36:20 +02:00
Georg Brandl 8b14dd39cf Closes #10031: overhaul the "imports" section of the programming FAQ.
Remove the advice to never use relative imports.
Remove the advice to locally import modules in __init__, it is a strange practice.
Remove the advice to use "from ... import *" with some modules.
2014-10-06 16:21:08 +02:00
Georg Brandl b74cf54a64 Closes #22507: document that PyType_IsSubtype does not call __subclasscheck__. 2014-10-06 14:15:06 +02:00
Georg Brandl 4a89fd9ba8 Document builtin classes as such, not functions. 2014-10-06 13:54:36 +02:00
Terry Jan Reedy f8b7e78aa2 Update 2.7 idlelib.configHandler and reduce differences from 3.4 code. 2014-10-06 01:32:21 -04:00
Terry Jan Reedy 57ac62376a Issue #3832: backport 677a9326b4d4 to 2.7 (and delete some obsolete code). 2014-10-06 00:13:51 -04:00
R David Murray 72601e1456 #14201: Update ctypes docs to match behavior changed from 214b28d7a999.
Original patch by Erik Johansson, slightly updated by Meador Inge.
2014-10-04 18:24:32 -04:00
R David Murray d999c34955 #11866: Eliminate race condition in the computation of names for new threads.
Original patch by Peter Saveliev.
2014-10-04 17:40:43 -04:00
Serhiy Storchaka 429866d136 Fixed issue number for issue #22470 in Misc/NEWS. 2014-10-04 15:04:41 +03:00
Serhiy Storchaka fb7c38040e Fixed compilation error introduced in 3f7519f633ed (issue #22518). 2014-10-04 14:51:44 +03:00
Serhiy Storchaka d524922bdc Issue #22518: Fixed integer overflow issues in "backslashreplace" and
"xmlcharrefreplace" error handlers.
2014-10-04 14:14:41 +03:00
Serhiy Storchaka 52313d72fa Issue #22219: The zipfile module CLI now adds entries for directories
(including empty directories) in ZIP file.
2014-10-04 13:39:18 +03:00
R David Murray c6cf35d36d #14056: Small improvements to the tarfile documentation.
Patch by Éric Araujo with help from Lars Gustäbel.
2014-10-03 20:30:42 -04:00
Benjamin Peterson a02ae2500a separate cert loading tests into Windows and non-Windows cases 2014-10-03 18:17:15 -04:00
Benjamin Peterson 0b30a2bd27 also use openssl envvars to find certs on windows (closes #22449)
Patch by Christian Heimes and Alex Gaynor.
2014-10-03 17:27:05 -04:00
doko@ubuntu.com a2e2b587c8 - Add CVE number for Issue #21831 2014-10-03 19:07:47 +02:00
Zachary Ware 06b74a762b Fix a few typo/grammar issues in the multiprocessing docs.
Reported by Scott Hinton on docs@.
2014-10-03 10:55:12 -05:00
R David Murray 9840db8384 #8473: make doctest.testfile use universal newline mode. 2014-10-02 21:53:50 -04:00
Georg Brandl 52d0a1b16f Closes #19434: fix copy-paste error in MIMENonMultipart docstring. 2014-10-02 12:35:08 +02:00
Serhiy Storchaka 96ba529095 Issue #20079: Fixed tests. 2014-10-02 11:36:01 +03:00
Serhiy Storchaka 5f4e55c500 Issue #20079: Updated alias mapping to glibc 2.19 SUPPORTED file. 2014-10-02 10:49:04 +03:00
Serhiy Storchaka ad95599e3f Issue #20076: Remove just added the sr_rs.utf8@latn alias because it is
derived from sr_rs@latin.
2014-10-02 10:19:09 +03:00
Georg Brandl dc14bc58e3 merge heads 2014-10-02 08:39:42 +02:00
Georg Brandl c066105e34 closes #22528: add source links to symtable and compileall 2014-10-02 08:38:39 +02:00
Georg Brandl fe3c80ba16 Closes #19342: improve docstrings in grp module. 2014-10-02 08:34:41 +02:00
Georg Brandl 14b5a4da27 Closes #22537: Make sphinx extensions compatible with Python 2 or 3, like in the 3.x branches 2014-10-02 08:26:26 +02:00
Benjamin Peterson 2f33456e41 fix sslwrap_simple (closes #22523)
Thanks Alex Gaynor.
2014-10-01 23:53:01 -04:00
doko@ubuntu.com 0d377b371d - Issue #17219: Add library build dir for Python extension cross-builds. 2014-10-02 02:10:06 +02:00
doko@ubuntu.com 92518cc7e3 - Issue #18096: Fix library order returned by python-config. 2014-10-02 01:58:58 +02:00
Serhiy Storchaka b3d80a21ac Issue #20076: Added non derived UTF-8 aliases to locale aliases table. 2014-10-02 00:09:17 +03:00
Serhiy Storchaka 4e286eb0c2 Issue #20079: Added locales supported in glibc 2.18 to locale alias table. 2014-10-01 23:44:20 +03:00
Benjamin Peterson bc4ece5775 allow longs as indexes to group() (closes #22530) 2014-09-30 22:04:28 -04:00
Benjamin Peterson bc4a834bd5 this test will only work on 64-bit machines 2014-09-30 21:28:27 -04:00
Benjamin Peterson 95bc0e4703 use Py_ssize_t for file offset and length computations in iteration (closes #22526) 2014-09-30 21:17:15 -04:00
R David Murray ece9d5a91f #22512: move distutils rpm test's .rpmdb to testing tmpdir.
Patch by Francis MB.
2014-09-30 20:57:24 -04:00
Terry Jan Reedy b10b8ead13 Issue 22465: grammar, number agreement. 2014-09-30 19:07:45 -04:00
Georg Brandl 3e430eba6e Remove duplicate PyLong function descriptions. 2014-09-30 23:02:52 +02:00
Georg Brandl f16fbf940f Move Doc/tools/sphinxext content to Doc/tools, there is no need for the nested subdirectory anymore. 2014-09-30 22:51:30 +02:00