Commit graph

10401 commits

Author SHA1 Message Date
Mark Dickinson
fe67bd9168 Issue #6561: '\d' regular expression should not match characters of
category [No]; only those of category [Nd].  (Backport of r74237
from py3k.)
2009-07-28 20:35:03 +00:00
Georg Brandl
8d31f5413c Clarify quote_plus() usage. 2009-07-28 18:55:32 +00:00
Mark Dickinson
8ab590ef06 Remove leading blank line from cmath.rst 2009-07-28 16:45:13 +00:00
Mark Dickinson
44ec7ac947 Issue #6458: Reorganize cmath documentation into sections (similar to
the way that the math documentation is organized); clarify section on
conversions to and from polar coordinates.
2009-07-28 16:12:40 +00:00
Georg Brandl
3591a8f81d Move member descriptions inside the classes. 2009-07-26 14:44:23 +00:00
Georg Brandl
d7d4fd7336 builtin -> built-in. 2009-07-26 14:37:28 +00:00
Georg Brandl
9fa61bb37d #6577: fix (hopefully) all links to builtin instead of module/class-specific objects. 2009-07-26 14:19:57 +00:00
Georg Brandl
74f8fc0b1b #6576: fix cross-refs in re docs. 2009-07-26 13:36:39 +00:00
Georg Brandl
1ba9c87306 #6571: add index entries for more operators. 2009-07-25 13:02:15 +00:00
Georg Brandl
e2d2704017 #6564: fix section about the two raise syntaxes. 2009-07-24 20:09:46 +00:00
Georg Brandl
36b30b5a4b Dont put "void" in signature for nullary functions. 2009-07-24 16:46:38 +00:00
Georg Brandl
f0b1733574 Fix arg types of et#. 2009-07-24 16:28:38 +00:00
Benjamin Peterson
617a5588d1 use bools 2009-07-23 14:25:31 +00:00
Georg Brandl
0e66914907 #6548: dont suggest existence of real and imag functions in cmath. 2009-07-23 07:08:58 +00:00
Ezio Melotti
7fc214b55d #6423 has_key -> in 2009-07-22 21:08:49 +00:00
Benjamin Peterson
d38d344370 revert r74152 2009-07-22 16:34:37 +00:00
Benjamin Peterson
bee2e1897b simplify 2009-07-22 00:03:43 +00:00
Ezio Melotti
dd89705c8c #6536 fixed typo 2009-07-21 20:18:27 +00:00
Benjamin Peterson
83dfc307c1 remove docs for deprecated -p option 2009-07-20 13:30:10 +00:00
Georg Brandl
3bb474714b #6489: fix an ambiguity in getiterator() documentation. 2009-07-18 09:43:40 +00:00
Georg Brandl
a1a4bdb30c #6505: fix typos. 2009-07-18 09:06:31 +00:00
Georg Brandl
b4d0ef91a5 #6513: fix example code: warning categories are classes, not instances. 2009-07-18 09:03:10 +00:00
Georg Brandl
2e1285baee #6481: fix typo in os.system() replacement. 2009-07-16 07:38:35 +00:00
Georg Brandl
da334249a7 #6486: start with built in functions rather than "built in objects". 2009-07-16 07:33:04 +00:00
Benjamin Peterson
573025f298 update year 2009-07-15 00:46:42 +00:00
Amaury Forgeot d'Arc
78c06bd9b7 Document the newly added codec 2009-07-13 23:11:54 +00:00
Benjamin Peterson
72f94f75d6 add versionadded 2009-07-12 16:56:54 +00:00
Georg Brandl
c91cbb948a array.array is actually a class. 2009-07-11 14:23:38 +00:00
Georg Brandl
b7e14eda6e #6456: clarify the meaning of constants used as arguments to nl_langinfo(). 2009-07-11 10:51:31 +00:00
Georg Brandl
7750505d2d #6430: add note about size of "u" type. 2009-07-11 10:37:38 +00:00
Georg Brandl
7c150bf904 #6448: clarify docs for find_module(). 2009-07-11 10:18:10 +00:00
Georg Brandl
0294de028f #6446: fix import_spam() function to use correct error and reference handling. 2009-07-11 10:14:54 +00:00
Georg Brandl
3405cbcf06 Fix style. 2009-07-11 10:12:36 +00:00
Amaury Forgeot d'Arc
ce32eb7406 #6416: Fix compilation of the select module on Windows, as well as test_subprocess:
PIPE_BUF is not defined on Windows, and probably has no meaning there.

Anyway the subprocess module uses another way to perform non-blocking reads (with a thread)
2009-07-09 22:37:22 +00:00
Gregory P. Smith
9d36fd2acb Adds the select.PIPE_BUF attribute to expose the system constant. 2009-07-03 20:48:31 +00:00
Benjamin Peterson
1e13960727 another cStringIO restriction 2009-07-03 14:08:20 +00:00
R. David Murray
fbba7cdcf0 Issue 6389: add documentation for the 'mode' flags defined in the
stat module.
2009-07-02 18:19:20 +00:00
R. David Murray
321afa80ba Make punctuation prettier and break up run-on sentence. 2009-07-01 02:49:10 +00:00
Ezio Melotti
be96cf608f Fixed a backslash that was not supposed to be there 2009-06-30 22:56:16 +00:00
Ezio Melotti
c2f5a595ba Fixed defaultTestCase -> defaultTestResult 2009-06-30 22:51:06 +00:00
Jesse Noller
1b90efbdc5 Resolves issues 5155, 5313, 5331 - bad file descriptor error with processes in processes 2009-06-30 17:11:52 +00:00
Georg Brandl
0c9eb43149 #6371: fix link targets. 2009-06-30 16:35:11 +00:00
Georg Brandl
3cd0bedc13 #6384: Add a heading for the exception hierarchy. 2009-06-30 16:18:55 +00:00
Georg Brandl
0d8649a1c9 #6374: add a bit of explanation about shell=True on Windows. 2009-06-30 16:17:28 +00:00
Georg Brandl
3d5c87a23c #6376: fix copy-n-paste oversight. 2009-06-30 16:15:43 +00:00
Jesse Noller
34116922d3 Issue 5740: multiprocessing.connection.* authkey fixes 2009-06-29 18:24:26 +00:00
Jesse Noller
d4792cd84e Bug 5906: add a documentation note for unix daemons vs. multiprocessing daemons 2009-06-29 18:20:34 +00:00
Benjamin Peterson
8e7b476945 update to sphinx 0.6.2 2009-06-29 03:30:55 +00:00
Mark Dickinson
11c4941b54 More Decimal quote fixing; backport of r73642 2009-06-28 21:48:15 +00:00
Kristján Valur Jónsson
e007860b8b http://bugs.python.org/issue6267
Cumulative patch to http and xmlrpc
2009-06-28 21:04:17 +00:00