Commit Graph

10351 Commits

Author SHA1 Message Date
Ezio Melotti b4ad395d07 Fixed a wrong apostrophe 2009-06-28 00:07:45 +00:00
Ezio Melotti 1dfd5d9f78 stmt and setup can contain multiple statements, see #5896 2009-06-27 23:45:39 +00:00
Benjamin Peterson 00a58c3574 link to extensive generator docs in the reference manual 2009-06-27 14:16:23 +00:00
Benjamin Peterson f36bebd06f document is_declared_global() 2009-06-26 23:37:06 +00:00
Benjamin Peterson f511fcc743 mark 3.1 as stable docs 2009-06-26 16:49:06 +00:00
R. David Murray 5c3d40e0f3 Add a couple of missing function alias declarations to the turtle docs. 2009-06-25 14:21:06 +00:00
Kristján Valur Jónsson f1d11efb72 http://bugs.python.org/issue6192
Move the newly introduced disable_nagle_algorithm flag into the StreamRequestHandler, where it is more appropriate.
2009-06-24 09:17:04 +00:00
Georg Brandl 5a85d5c4f2 #6332: fix word dupes throughout the source. 2009-06-24 06:41:19 +00:00
Amaury Forgeot d'Arc 388637d373 Remove last remnants of the ipaddr package.
The changes in mcast.py come from the first version of the patch for issue5379.
2009-06-23 21:53:46 +00:00
Amaury Forgeot d'Arc 14fc673d4f Remove the ipaddr module per discussion on python-dev 2009-06-23 21:09:09 +00:00
R. David Murray 4ee6d25b18 Improve English phrasing. 2009-06-22 22:11:04 +00:00
Nick Coghlan 7c2bc8308c Issue 6288: update the contextlib.nested() docs to explain why it has been deprecated and should generally be avoided 2009-06-17 12:12:15 +00:00
Georg Brandl 476849c185 #6255: document PyInt_FromSize_t. 2009-06-17 09:43:31 +00:00
Georg Brandl 2fcf389e10 #6295: clarify blocking behavior of getch(). 2009-06-17 09:36:21 +00:00
Raymond Hettinger 3a02624059 Add usage note. 2009-06-17 01:43:47 +00:00
Georg Brandl f5af720a31 Add tabularcolumns directive for tables with bullet lists in them. 2009-06-16 17:41:33 +00:00
Tarek Ziadé fdefc0a5a1 Fixed #6287: documentation for the license field in distutils 2009-06-16 07:29:52 +00:00
Benjamin Peterson 248886a0cd use 'rc' for release candidates for consistency 2009-06-13 14:25:08 +00:00
Antoine Pitrou 1969059327 Issue #6215: backport the 3.1 io lib 2009-06-12 20:14:08 +00:00
Raymond Hettinger 2c0cdca564 Issue 6261: Clarify behavior of random.uniform(). 2009-06-11 23:14:53 +00:00
Raymond Hettinger 2742e7e584 Move comment to correct line. 2009-06-11 22:08:10 +00:00
Raymond Hettinger 87be88c2e9 Add example of how to do key lookups with bisect(). 2009-06-11 22:04:00 +00:00
Amaury Forgeot d'Arc d81333c540 Fix a typo spotted by Nick Coghlan. 2009-06-10 20:30:19 +00:00
Amaury Forgeot d'Arc d708c8703e Both kind of types are concerned. 2009-06-09 23:18:50 +00:00
Amaury Forgeot d'Arc 901f200c81 #6201: Fix test_winreg on Windows:
since the introduction of the SETUP_WITH opcode,
__enter__ and __exit__ methods must belong to the type,
and are not retrieved at the instance level (__dict__ or __getattr__).

Add a note in whatsnew about this incompatibility;
old style classes are not affected.
2009-06-09 23:08:13 +00:00
R. David Murray ccb9d4b21c Issue 2947: document how return code handling translates from
os.popen to subprocess.  Also fixes reference link in the
os.spawn documentation.
2009-06-09 00:44:22 +00:00
Georg Brandl 2cc39ad242 #6238: add fillchar to string.just function family. 2009-06-08 16:03:41 +00:00
Georg Brandl e590d57d06 #6194: O_SHLOCK/O_EXLOCK are not really more platform independent than lockf(). 2009-06-08 13:34:52 +00:00
Georg Brandl 42a826408b Remove period from end of headings. 2009-06-08 07:57:35 +00:00
Kristján Valur Jónsson afefcfd4bf http://bugs.python.org/issue6192
Add a feature to disable the Nagle algorithm on sockets in TCPServer
2009-06-07 16:43:23 +00:00
Georg Brandl 18187e2167 #6224: s/JPython/Jython/, and remove one link to a module nine years old. 2009-06-06 18:21:58 +00:00
Georg Brandl e3b9b5e4ed #6204: use a real reference instead of "see later". 2009-06-06 17:51:31 +00:00
Georg Brandl 4c324b9801 #6211: elaborate a bit on ways to call the function. 2009-06-06 17:50:05 +00:00
Eric Smith e7dbebbadf Minor documentation fixes for logging. 2009-06-04 17:58:15 +00:00
Georg Brandl 5000b3b8a7 #6175: document that inet_aton supports alternate input formats with less than three dots. 2009-06-04 10:27:21 +00:00
Georg Brandl 4a20b1ad51 #6176: fix man page section for flock(2). 2009-06-04 10:22:31 +00:00
Georg Brandl 3a5971c237 #5967: note that the C slicing APIs do not support negative indices. 2009-06-04 10:15:57 +00:00
Georg Brandl 0eca77c40c #6174: fix indentation in code example. 2009-06-03 21:21:09 +00:00
Georg Brandl c1edec3374 Use the preferred form of raise statements in the docs. 2009-06-03 07:25:35 +00:00
Andrew M. Kuchling 764fbcb098 The class for regexes isn't called RegexObject any more; correct the text 2009-06-01 00:14:19 +00:00
R. David Murray 8fcaebbef4 Issue 3848: document the fact that epoll register raises an IOError if
an fd is registered twice, and add some additional epoll tests.  Patch
by Christian Heimes.
2009-05-31 19:15:57 +00:00
Antoine Pitrou 4698d9928e Issue #6152: New option '-j'/'--multiprocess' for regrtest allows running
regression tests in parallel, shortening the total runtime.
2009-05-31 14:20:14 +00:00
Georg Brandl d198b76d36 Fix markup. 2009-05-31 14:15:25 +00:00
Benjamin Peterson d7ead0c23f fix signature 2009-05-31 00:42:42 +00:00
Gregory P. Smith 2152ca390b Add more examples to the ipaddr documentation. 2009-05-30 19:58:11 +00:00
Georg Brandl 2fcd17324d Rewrap a few long lines. 2009-05-30 10:45:40 +00:00
Georg Brandl 6da0e6ac5a Fix markup problem. 2009-05-30 10:34:25 +00:00
Georg Brandl 6a4689887c Fix some more small markup problems. 2009-05-30 10:33:23 +00:00
Georg Brandl 7be493a86c Use preferred form of raising exceptions. 2009-05-30 07:31:25 +00:00
Georg Brandl ccbb47be5e #6146: fix markup bug. 2009-05-30 07:26:04 +00:00