Ezio Melotti
a3b255f275
#17653 : fix typo in socketserver docs. Patch by Tshepang Lekhonkhobe.
2013-04-12 19:19:21 +03:00
Ezio Melotti
6ebdb61b67
Merge heads.
2013-04-12 16:23:24 +03:00
Andrew Svetlov
59d6d2dbeb
#17688 : fix declaration for richcmp example in the docs.
...
Thanks to Daniel Mullner
2013-04-12 16:08:40 +03:00
Ezio Melotti
075d87cf05
#6696 : add documentation for the Profile objects, and improve profile/cProfile docs. Patch by Tom Pinckney.
2013-04-12 15:42:06 +03:00
Ezio Melotti
c09959ae0f
#17635 : fix wrong function name in multiprocessing docs.
2013-04-10 17:59:20 +03:00
Andrew Svetlov
595365de32
Merge heads
2013-04-07 14:47:05 +03:00
Andrew Svetlov
5b6e1cad37
Update argparse docs to follow order of ArgumentParser() arguments.
2013-04-07 14:43:17 +03:00
Raymond Hettinger
17328e4fae
Clean-up lru_cache examples. The print() not is needed. Set maxsize to a power of two.
2013-04-06 20:27:33 -07:00
Andrew Svetlov
e16f4dc80a
Change wording as Eli Bendersky suggests.
2013-04-06 18:55:07 +03:00
Georg Brandl
03b273f4d1
Add 3.3.1 to LICENSE files.
2013-04-06 16:48:55 +02:00
Georg Brandl
cca5548159
merge with 3.3.1 release clone
2013-04-06 16:42:43 +02:00
Georg Brandl
2fd4abe6a1
merge with 3.2 branch
2013-04-06 16:39:49 +02:00
Andrew Svetlov
9a411ce9ea
Add link to glossary for hashable term in docs for set type
2013-04-05 16:21:50 +03:00
Andrew Svetlov
e463b668e8
Fix typo
2013-04-05 11:39:50 +03:00
Andrew Svetlov
815b0e23bf
Fix typo.
2013-04-05 10:10:12 +03:00
Ezio Melotti
09f0ddec21
#8913 : add examples and docs for date/time/datetime.__format__. Patch by Heikki Partanen.
2013-04-04 09:16:15 +03:00
Terry Jan Reedy
41459a9b29
Issue #15940 : Replace tab.
2013-04-03 12:45:24 -04:00
Terry Jan Reedy
b5e2e7e93a
Issue #15940 : Specify effect of locale on time functions.
2013-04-03 12:34:57 -04:00
R David Murray
03b2a1ce51
#17623 : fix whatsnew typo
...
Patch by Thomas Heller.
2013-04-03 06:16:14 -04:00
R David Murray
19aeb439c6
Issue #17435 : Don't use mutable default values in Timer.
...
Patch by Denver Coneybeare with some test modifications by me.
2013-03-30 17:19:38 -04:00
Vinay Sajip
8028a5cf15
Updated logging cookbook with additional example for output using str.format().
2013-03-30 11:56:18 +00:00
Ezio Melotti
b40a2203ad
#17539 : fix MagicMock example. Patch by Berker Peksag.
2013-03-30 05:55:52 +02:00
Ezio Melotti
6d2bc6e80b
#17438 : add links to the conversion tables in dump(s)/load(s).
2013-03-29 03:59:29 +02:00
Ezio Melotti
a5d55baecc
Update the suspicious builder to detect unused rules, and remove currently unusued rules.
2013-03-28 17:40:24 +02:00
Georg Brandl
44ea77bd81
Closes #4159 : add LaTeX tabular column specifications to tables that otherwise are cut off or have overlapping text.
2013-03-28 13:28:44 +01:00
Georg Brandl
6ba6b13e32
Fix XML vulnerability link targets.
2013-03-28 09:11:44 +01:00
Georg Brandl
6f18a8648b
Fix XML vulnerability link references.
2013-03-28 09:02:18 +01:00
Georg Brandl
f5390fc162
merge with last upstream doc changes in 3.2
2013-03-28 08:57:50 +01:00
Ezio Melotti
e5caf29743
Update suspicious ignore file.
2013-03-28 04:54:58 +02:00
Ezio Melotti
fd4365a4d8
Update suspicious ignore file.
2013-03-28 04:31:53 +02:00
Ezio Melotti
184e59357e
#17329 : merge with 3.2.
2013-03-27 20:12:55 +02:00
Ezio Melotti
265281ac02
#17329 : document unittest.SkipTest. Initial patch by Zachary Ware.
2013-03-27 20:11:55 +02:00
Christian Heimes
768f6a5360
Issue 17538: Document XML vulnerabilties
2013-03-26 17:47:23 +01:00
Christian Heimes
1df04e88ae
Issue 17538: Document XML vulnerabilties
2013-03-26 17:35:55 +01:00
Christian Heimes
7380a67267
Issue 17538: Document XML vulnerabilties
2013-03-26 17:35:55 +01:00
Ezio Melotti
a1eb483d8f
Add versionadded for `-X faulthandler` (also fix typo and markup).
2013-03-26 02:36:28 +02:00
Georg Brandl
a809e4a540
merge with upstream 3.3 branch
2013-03-25 07:01:37 +01:00
Georg Brandl
4eb5f1a567
merge with main repo 3.2 branch
2013-03-25 06:56:31 +01:00
Gregory P. Smith
a1b9ed32ee
Fixes issue #17488 : Change the subprocess.Popen bufsize parameter default value
...
from unbuffered (0) to buffering (-1) to match the behavior existing code
expects and match the behavior of the subprocess module in Python 2 to avoid
introducing hard to track down bugs.
2013-03-23 11:54:22 -07:00
Gregory P. Smith
a1ed539268
Fixes issue #17488 : Change the subprocess.Popen bufsize parameter default value
...
from unbuffered (0) to buffering (-1) to match the behavior existing code
expects and match the behavior of the subprocess module in Python 2 to avoid
introducing hard to track down bugs.
2013-03-23 11:44:25 -07:00
Raymond Hettinger
3ddba16aa6
Update collections ABC table to match the __abstractmethods__ attribute for each container.
2013-03-23 09:07:36 -07:00
Raymond Hettinger
378170d5d9
Issue 17447: Clarify that str.isidentifier doesn't check for reserved keywords.
2013-03-23 08:21:12 -07:00
Georg Brandl
a7d2f0061f
Copyright update to 2013.
2013-03-23 16:06:13 +01:00
Georg Brandl
d50fe7216d
Fix suspicious markup in the docs.
2013-03-23 16:00:41 +01:00
Georg Brandl
0a1bc11c66
Fix suspicious markup in the docs.
2013-03-23 15:59:46 +01:00
Gregory P. Smith
bcd2aa6d06
cleanup references to PyString_ APIs from 2.x in the 3.3 docs.
2013-03-22 13:49:26 -07:00
Gregory P. Smith
4b52ae8f97
Clean up references to the no longer existing PyString_ APIs in our docs.
2013-03-22 13:43:30 -07:00
Raymond Hettinger
8f35c891e7
Modernize unittest example
2013-03-22 07:26:18 -07:00
doko@ubuntu.com
1621d77fc8
- Issue #16754 : Fix the incorrect shared library extension on linux. Introduce
...
two makefile macros SHLIB_SUFFIX and EXT_SUFFIX. SO now has the value of
SHLIB_SUFFIX again (as in 2.x and 3.1). The SO macro is removed in 3.4.
2013-03-21 13:31:41 -07:00
doko@ubuntu.com
d5537d071c
- Issue #16754 : Fix the incorrect shared library extension on linux. Introduce
...
two makefile macros SHLIB_SUFFIX and EXT_SUFFIX. SO now has the value of
SHLIB_SUFFIX again (as in 2.x and 3.1). The SO macro is removed in 3.4.
2013-03-21 13:21:49 -07:00