summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* This contains a number of things:Bill Janssen2007-08-291-64/+133
| | | | | | | | | | | | | | | | 1) Improve the documentation of the SSL module, with a fuller explanation of certificate usage, another reference, proper formatting of this and that. 2) Fix Windows bug in ssl.py, and general bug in sslsocket.close(). Remove some unused code from ssl.py. Allow accept() to be called on sslsocket sockets. 3) Use try-except-else in import of ssl in socket.py. Deprecate use of socket.ssl(). 4) Remove use of socket.ssl() in every library module, except for test_socket_ssl.py and test_ssl.py.
* Fix title endtag in HTMLCalender.formatyearpage(). Fix documentation forWalter Dörwald2007-08-281-1/+1
| | | | | | HTMLCalender.formatyearpage() (there's no themonth parameter). This fixes issue1046.
* Fix some glitches.Georg Brandl2007-08-281-19/+20
|
* Adding basic imputil documentation.Sean Reifscheider2007-08-282-0/+234
|
* Document rev. 57574.Georg Brandl2007-08-281-1/+9
|
* Patch 10124 by Bill Janssen, docs for the new ssl code.Guido van Rossum2007-08-274-92/+322
|
* Spell check (also americanify behaviour, it's almost 3 times as common)Neal Norwitz2007-08-261-26/+26
|
* Server-side SSL and certificate validation, by Bill Janssen.Guido van Rossum2007-08-251-3/+12
| | | | | While cleaning up Bill's C style, I may have cleaned up some code he didn't touch as well (in _ssl.c).
* Revert misguided attempt at fixing incompatibility between -m and -i ↵Nick Coghlan2007-08-251-5/+3
| | | | switches (better fix coming soon)
* Document new utility functions in test_support.Georg Brandl2007-08-241-2/+31
|
* Fix #1012: wrong URL to :mod:`site` in install/index.rst.Georg Brandl2007-08-241-5/+2
|
* Bug #1011: fix rfc822.Message.getheader docs.Georg Brandl2007-08-241-2/+4
|
* Bug #1758696: more info about descriptors.Georg Brandl2007-08-231-3/+10
|
* Bug #1625381: clarify match vs search introduction.Georg Brandl2007-08-231-5/+5
|
* Bug #1734111: document struct.Struct.size.Georg Brandl2007-08-231-0/+5
|
* Bug #1752332: httplib no longer uses socket.getaddrinfo().Georg Brandl2007-08-231-1/+1
|
* Clarify wording a bit.Georg Brandl2007-08-231-11/+13
|
* Bug #1594966: fix misleading usage exampleGeorg Brandl2007-08-231-16/+4
|
* Bug #1694833: fix imp.find_module() docs wrt. packages.Georg Brandl2007-08-231-35/+43
|
* Bug #1573854: fix docs for sqlite3 cursor rowcount attr.Georg Brandl2007-08-231-3/+3
|
* Bug #1697820: document that the old slice protocol is still used by builtin ↵Georg Brandl2007-08-231-0/+3
| | | | types.
* Bug #1766421: "return code" vs. "status code".Georg Brandl2007-08-231-2/+2
|
* Bug #1768121: fix wrong/missing opcode docs.Georg Brandl2007-08-231-5/+23
|
* Bug #1777168: replace operator names "opa"... with "op1"... and mark ↵Georg Brandl2007-08-211-5/+5
| | | | | | everything up as literal, to enhance readability.
* Bug #1777160: mention explicitly that e.g. -1**2 is -1.Georg Brandl2007-08-211-1/+1
|
* Demand version 2.5.1 since 2.5 has a bug with codecs.open context managers.Georg Brandl2007-08-211-2/+2
|
* Fix stray backticks.Georg Brandl2007-08-192-4/+3
|
* Fix PDB command descriptions.Georg Brandl2007-08-181-4/+4
|
* Clarify the comment about setting the PYTHON variable for the Doc Makefile.Brett Cannon2007-08-171-2/+3
|
* Use glossary x-refs, document new ``!`` feature.Georg Brandl2007-08-172-13/+18
|
* Backport r57105 and r57145 from the py3k branch: UTF-32 codecs.Walter Dörwald2007-08-172-0/+79
|
* Move the glossary from the tutorial to toplevel.Georg Brandl2007-08-175-352/+337
| | | | Prepare for cross-linking with the new .. glossary:: directive.
* Note that smtplib example needs a mailserver.Georg Brandl2007-08-171-0/+2
|
* Fix problem reported by Andre Roberge.Georg Brandl2007-08-171-5/+5
|
* - mark the findCaller 2-element tuple/3-element tuple change as new in 2.4Matthias Klose2007-08-161-1/+1
|
* Added a note in each regarding the fact that unicode strings that look the sameMark Summerfield2007-08-162-2/+12
| | | | may not compare equal (due to the possibility of multiple representations).
* Replace "Caveat" paragraphs by .. warning::s.Georg Brandl2007-08-155-21/+30
|
* Mark deprecated modules as such.Georg Brandl2007-08-1514-3/+25
|
* Fix a wrong path in the Makefile.Georg Brandl2007-08-151-1/+1
|
* Don't use "?=" which seems to be a GNUism.Georg Brandl2007-08-151-3/+3
|
* Add the roman.py module which docutils require.Georg Brandl2007-08-151-0/+80
|
* Fail somewhat more gracefully when using Python < 2.5.Georg Brandl2007-08-151-0/+9
|
* Move the 2.6 reST doc tree in place.Georg Brandl2007-08-15445-0/+136056
|
* Delete the LaTeX doc tree.Georg Brandl2007-08-15513-154687/+0
|
* Remove test.test_support.guard_warnings_filter.Brett Cannon2007-08-141-6/+0
| | | | | | | | test.test_support.catch_warning is more full-featured and provides the same functionality. Since guard_warnings_filter was added in 2.6 there is no backwards-compatibility issues.
* Clarify the docs for TransientResource.Brett Cannon2007-08-141-4/+5
|
* Revert the fix for #1548891, it broke backwards compatibility with arbitrary ↵Georg Brandl2007-08-081-0/+4
| | | | | | read buffers. Fixes #1730114.
* Bug #1769002: fix a now-wrong sentence in the tutorial.Georg Brandl2007-08-071-7/+6
|
* Patch #1765839: add link to https+proxy urllib2 opener.Georg Brandl2007-08-061-1/+6
|
* - Allow Emacs 22 for building the documentation in info format.Matthias Klose2007-08-021-2/+2
|