summaryrefslogtreecommitdiffstats
path: root/Doc/library
Commit message (Collapse)AuthorAgeFilesLines
* Issue #10041: The signature of optional arguments in socket.makefile()Antoine Pitrou2010-10-131-1/+1
| | | | | didn't match that of io.open(), and they also didn't get forwarded properly to TextIOWrapper in text mode. Patch by Kai Zhu.
* Fix grammarAntoine Pitrou2010-10-131-2/+2
|
* Issue #9003: http.client.HTTPSConnection, urllib.request.HTTPSHandler andAntoine Pitrou2010-10-132-15/+41
| | | | | urllib.request.urlopen now take optional arguments to allow for server certificate checking, as recommended in public uses of HTTPS.
* fix spelling #10078Benjamin Peterson2010-10-121-1/+1
|
* Issue #10075: Add a session_stats() method to SSLContext objects.Antoine Pitrou2010-10-121-5/+21
|
* Make comment about SSL support more accurateAntoine Pitrou2010-10-121-2/+2
|
* Fix Issue7285 - multiprocessing module, example code error.Senthil Kumaran2010-10-101-3/+3
|
* Issue #10029: Fix sample code in the docs for zip().Raymond Hettinger2010-10-101-5/+12
|
* Document that the 'strict' error handler is used to encode/decode filenames onVictor Stinner2010-10-091-6/+2
| | | | Windows
* remove author names from proseBenjamin Peterson2010-10-091-3/+0
|
* What's new entry for email 5.1.R. David Murray2010-10-081-1/+1
|
* #4661: add bytes parsing and generation to email (email version bump to 5.1.0)R. David Murray2010-10-084-11/+151
| | | | | | | | The work on this is not 100% complete, but everything is present to allow real-world testing of the code. The only remaining major todo item is to (hopefully!) enhance the handling of non-ASCII bytes in headers converted to unicode by RFC2047 encoding them rather than replacing them with '?'s.
* Issue #1589: Add ssl.match_hostname(), to help implement server identityAntoine Pitrou2010-10-081-50/+81
| | | | verification for higher-level protocols.
* Fix errors found by "make suspicious".Georg Brandl2010-10-067-18/+20
|
* Migrate to Sphinx 1.0 C language constructs.Georg Brandl2010-10-0632-275/+275
|
* Copyedit of os.symlink() docs.Georg Brandl2010-10-061-15/+13
|
* #10034: import readline in longer example.Georg Brandl2010-10-061-0/+1
|
* fix a typo.Senthil Kumaran2010-10-051-2/+2
|
* Remove the references of FTPS from the urllib Documentation. There is no ↵Senthil Kumaran2010-10-051-4/+3
| | | | support for it yet.
* Indent version tags properly.Georg Brandl2010-10-051-2/+4
|
* GzipFile.peek improvements, suggested by Nir Aides.Antoine Pitrou2010-10-041-3/+11
|
* Fix issue 6706: adds new handle_accepted() method to asyncore.dispatcherGiampaolo Rodolà2010-10-041-10/+66
|
* Fixes #10020Gerhard Häring2010-10-031-0/+11
|
* Fix - issue10010 .. index:: position in the docs.Senthil Kumaran2010-10-021-15/+16
|
* Lower the tone of the warning about SSL certificate validation.Amaury Forgeot d'Arc2010-10-011-3/+4
|
* Issue1491 - BaseHTTPServer incorrectly implements response code 100Senthil Kumaran2010-09-301-0/+20
|
* Issue #9360: Cleanup and improvements to the nntplib module. The APIAntoine Pitrou2010-09-291-172/+284
| | | | | now conforms to the philosophy of bytes and unicode separation in Python 3. A test suite has also been added.
* Issue #9983: warn that urllib and httplib don't perform SSL certificate ↵Antoine Pitrou2010-09-292-6/+10
| | | | validation.
* Issue #9962: GzipFile now has the peek() method.Antoine Pitrou2010-09-291-6/+10
|
* Implement #8521. Added named argument handling to winreg's CreateKeyEx,Brian Curtin2010-09-271-3/+5
| | | | | | | | DeleteKeyEx, and OpenKeyEx. Note that CKE and DKE are new functions for 3.2 so I didn't give them a versionchanged because of the existing versionadded. OpenKeyEx already existed so it gets a versionchanged tag.
* logging: Updated library configuration documentation.Vinay Sajip2010-09-271-2/+20
|
* Fix typo.Antoine Pitrou2010-09-251-1/+1
|
* #9562: slight clarification.Georg Brandl2010-09-251-1/+1
|
* #9944: fix typo.Georg Brandl2010-09-251-1/+1
|
* Updated SysLogHandler documentation.Vinay Sajip2010-09-231-0/+9
|
* #9808. Implement os.getlogin for Windows, completed by Jon Anglin.Brian Curtin2010-09-231-3/+3
| | | | | | | The test is semi-dumb, it just makes sure something comes back since we don't have a solid source to validate the returned login. We can't be 100% sure that the USERNAME env var will always match what os.getlogin() returns, so we don't make any specific assertion there.
* Small fixes in the gzip docsAntoine Pitrou2010-09-231-3/+4
|
* Issue #1675951: Allow GzipFile to work with unseekable file objects.Antoine Pitrou2010-09-231-0/+3
| | | | Patch by Florian Festi.
* logging: Improved documentation re. blocking handlers.Vinay Sajip2010-09-231-0/+64
|
* logging: added QueueListener and documentation.Vinay Sajip2010-09-231-1/+97
|
* logging: Added QueueHandler.prepare and updated documentation.Vinay Sajip2010-09-221-1/+15
|
* #9911: doc copyedits.Georg Brandl2010-09-2120-26/+26
|
* Added some methods to LoggerAdapter, and updated documentation.Vinay Sajip2010-09-211-8/+11
|
* Document HTTPReponse.fileno() methodSenthil Kumaran2010-09-211-0/+3
|
* Issue 9877: expose sysconfig.get_makefile_filename() in the public API.Barry Warsaw2010-09-201-0/+4
|
* logging: hasHandlers additions documented.Vinay Sajip2010-09-201-0/+12
|
* Be more precise as to what operations are supportedAntoine Pitrou2010-09-191-5/+21
|
* Remove references to read() and write() methods, which are useless synonyms ofAntoine Pitrou2010-09-191-28/+14
| | | | recv() and send()
* Mention that SSL sockets provide the basic socket API.Antoine Pitrou2010-09-191-0/+6
|
* Edit concurrent docs, add versionadded and see also reference to the PEP.Georg Brandl2010-09-191-145/+152
|