Commit graph

1725 commits

Author SHA1 Message Date
Ask Solem
ff7ffdd752 Issue #8028: multiprocessing: Documented that `Process.terminate`
is only intented for use by the parent process.
2010-11-09 21:52:33 +00:00
Ask Solem
518eaa8a76 Issue #7707: Documented that multiprocessing.Queue operations during
import can lead to deadlocks.
2010-11-09 21:46:03 +00:00
Ask Solem
1d3b89397b Documented the new error_callback keyword argument to multiprocessing.Pool's apply_async and map_async 2010-11-09 21:36:56 +00:00
Antoine Pitrou
fb0469112f Issue #10022: The dictionary returned by the getpeercert() method
of SSL sockets now has additional items such as `issuer` and `notBefore`.
2010-11-09 20:21:19 +00:00
Antoine Pitrou
859c4ef0a0 Make usenetrc False by default (the old behaviour of having it True by
default could be rather confusing).
2010-11-09 18:58:42 +00:00
Antoine Pitrou
1cb121ecea Issue #1926: Add support for NNTP over SSL on port 563, as well as
STARTTLS.  Patch by Andrew Vant.
2010-11-09 18:54:37 +00:00
Alexander Belopolsky
14fb79977b Issue #7061: Added a 'Turtle star' sidebar 2010-11-09 18:40:03 +00:00
Alexander Belopolsky
e1f849c7d2 Fixed a typo in ReST markup. 2010-11-09 03:13:43 +00:00
Victor Stinner
58c0752a33 Issue #10335: Add tokenize.open(), detect the file encoding using
tokenize.detect_encoding() and open it in read only mode.
2010-11-09 01:08:59 +00:00
R. David Murray
7dff9e08fb #10321: Add support for sending binary DATA and Message objects to smtplib 2010-11-08 17:15:13 +00:00
Georg Brandl
49d474195f Fix typo. 2010-11-08 11:08:35 +00:00
Georg Brandl
facfb15bb9 Fix latex conversion glitch in property/feature descriptions. 2010-11-08 11:05:18 +00:00
Victor Stinner
e14e212221 Fix encode/decode method doc of str, bytes, bytearray types
* Specify the default encoding: write 'utf-8' instead of
   sys.getdefaultencoding(), because the default encoding is now constant
 * Specify the default errors value
2010-11-07 18:41:46 +00:00
Senthil Kumaran
7089a4e127 Fix Issue10226 - Clarifying the role of the netloc separator. 2010-11-07 12:57:04 +00:00
Mark Dickinson
4a3c7c4ecf Issue #10145: the float.is_integer method was undocumented. 2010-11-07 12:48:18 +00:00
Mark Dickinson
43ef32ae36 Issue 10297: Add missing import in decimal example snippet. 2010-11-07 11:24:44 +00:00
Eric Smith
5ad85f81b0 Added example for str.format_map(). 2010-11-06 13:22:13 +00:00
Éric Araujo
1cb25aa2e3 Tweak example to make clear the argument is a boolean, not any integer.
With Raymond’s approval.
2010-11-06 07:03:07 +00:00
Éric Araujo
c6ecb012da Fix wrapper/wrapped typo (with Raymond’s blessing) 2010-11-06 06:33:03 +00:00
Éric Araujo
8f9626b08b Fix typo 2010-11-06 06:30:16 +00:00
Éric Araujo
2642ad07ee Fix typo from r86170. 2010-11-06 04:59:27 +00:00
Antoine Pitrou
a078115434 Issue #10282: Add a nntp_implementation attribute to NNTP objects. 2010-11-05 19:16:37 +00:00
Ezio Melotti
4841fd60fb Merge the doc for assertTrue/False, assert[Not]AlmostEqual, assert[Not]RegexpMatches, rephrase a couple of paragraphs, and remove redundant doc about the msg arg. 2010-11-05 15:43:40 +00:00
Antoine Pitrou
08eeadac27 Issue #10283: Add a group_pattern argument to NNTP.list(). 2010-11-04 21:36:15 +00:00
Ezio Melotti
8f2e07b7d0 Move the deprecated aliases in a new section. 2010-11-04 19:09:28 +00:00
Eric Smith
27bbca6f79 Issue #6081: Add str.format_map. str.format_map(mapping) is similar to str.format(**mapping), except mapping does not get converted to a dict. 2010-11-04 17:06:58 +00:00
Ezio Melotti
9794a26de9 Merge the doc for assertIs[Not], assertIs[Not]None, and assert[Not]IsInstance. 2010-11-04 14:52:13 +00:00
Raymond Hettinger
fd15191b92 Demote one warning to a note. There's no security risk here, just a note on usage and avialability. 2010-11-04 03:02:56 +00:00
Raymond Hettinger
f4477703a5 Put warning block in the main flow of text. 2010-11-04 02:39:07 +00:00
Phillip J. Eby
b6d4a8e4de Implement http://bugs.python.org/issue10155 using And Clover's patch, w/added
docs and support for more client-generated CGI variables.  (This should
complete the WSGI 1.0.1 compliance changes for Python 3.x.)
2010-11-03 22:39:01 +00:00
Ezio Melotti
327433f864 Divide the context manager signature from the normal one for consistency with the other methods. 2010-11-03 20:51:17 +00:00
Ezio Melotti
9c02c2ffa2 Minor cleanups to unittest doc. 2010-11-03 20:45:31 +00:00
Ezio Melotti
4370b30139 List the assert* methods in tables in unittest doc. 2010-11-03 20:39:14 +00:00
Antoine Pitrou
7dd1af00ad Issue #10285: explain the flag return field better in NNTP.list().
Patch by Julien Élie.
2010-11-03 18:32:54 +00:00
Antoine Pitrou
4103bc09a4 Issue #10281: nntplib now returns None for absent fields in the OVER/XOVER
response, instead of raising an exception.
2010-11-03 18:18:43 +00:00
Phillip J. Eby
a01799f71a Update docs (and sample app in wsgiref.simple_server) to reflect PEP 3333. 2010-11-03 00:46:45 +00:00
Michael Foord
7a26cb9772 Updating unittest docs to reflect change in unittest.TestCase.assert[Not]AlmostEqual signature change 2010-11-02 14:27:10 +00:00
Martin v. Löwis
16f344df36 Issue #10184: Touch directories only once when extracting a tarfile. 2010-11-01 21:39:13 +00:00
Alexander Belopolsky
ea13d9d86b Issue #10199: Moved Demo/turtle under Lib/ 2010-11-01 17:39:37 +00:00
Alexander Belopolsky
6509599056 Issue #7061: Simplified a section title. 2010-11-01 15:45:34 +00:00
Raymond Hettinger
b373799e05 Issue 7447: Improve docs for sum(). 2010-10-31 21:23:24 +00:00
Antoine Pitrou
e974571d36 Issue #10160: Speed up operator.attrgetter. Patch by Christos Georgiou. 2010-10-31 15:26:04 +00:00
Vinay Sajip
c5b273011b Added style argument to logging.basicConfig() and documented this change. 2010-10-31 14:59:16 +00:00
Raymond Hettinger
b643ef8f8e Issue #5729: json.dumps to support using '\t' as an indent string 2010-10-31 08:00:16 +00:00
Alexander Belopolsky
a9615d14de Issues #7061, #10225: Fixed doctests in turtle manual 2010-10-31 00:51:11 +00:00
Georg Brandl
6ce29fa7a8 Fix test_mailbox by supporting context manager protocol for get_file() returns. 2010-10-30 14:33:28 +00:00
Alexander Belopolsky
3cdfb12360 Issue 7061: Explained 'gon' 2010-10-29 17:16:49 +00:00
Lars Gustäbel
9cbdd75ec5 Add read support for all missing variants of the GNU sparse
extensions. Thus, in addition to GNUTYPE_SPARSE headers, sparse
information in pax headers created by GNU tar can now be decoded.
All three formats 0.0, 0.1 and 1.0 are supported.
On filesystems that support this, holes in files are now restored
whenever a sparse member is extracted.
2010-10-29 09:08:19 +00:00
Georg Brandl
3122ce3e5d (?:...) is a non-capturing, but still grouping construct. 2010-10-29 06:17:38 +00:00
Georg Brandl
5c66bcaa1a Fix markup error and update false positive entries from "make suspicious". 2010-10-29 05:36:28 +00:00