summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Patches #1497027 and #972322: try HTTP digest auth first,Georg Brandl2006-05-291-3/+1
| | | | and watch out for handler name collisions.
* Apply modified version of Collin Winter's patch #1478788Nick Coghlan2006-05-293-6/+7
| | | | | | Renames functional extension module to _functools and adds a Python functools module so that utility functions like update_wrapper can be added easily.
* Patch #1080727: add "encoding" parameter to doctest.DocFileSuiteGeorge Yoshida2006-05-281-2/+15
| | | | Contributed by Bjorn Tillenius.
* fix typoGeorge Yoshida2006-05-271-1/+1
|
* End of Ch.3 is now about "with statement".George Yoshida2006-05-271-3/+3
| | | | Avoid obsolescence by directly referring to the section.
* minor markup nitsGeorge Yoshida2006-05-272-4/+5
|
* credit where credit is dueRichard Jones2006-05-271-2/+2
|
* Mention new-style exceptionsAndrew M. Kuchling2006-05-271-0/+6
|
* Conversion of exceptions over from faked-up classes to new-style C types.Richard Jones2006-05-271-1/+1
|
* Add Py_LOCAL macrosAndrew M. Kuchling2006-05-271-0/+12
|
* Patch 1494554: Update numeric properties to Unicode 4.1.Martin v. Löwis2006-05-271-1/+1
|
* Patch #1492218: document None being a constant.Georg Brandl2006-05-261-7/+9
|
* Write more docs.Thomas Heller2006-05-261-17/+175
|
* Exception isn't the root of all exception classes anymore.Georg Brandl2006-05-261-2/+3
|
* Add rpartition() and path cachingAndrew M. Kuchling2006-05-261-3/+18
|
* needspeed: rpartition documentation, tests, and a bug fixes.Fredrik Lundh2006-05-261-0/+9
| | | | feel free to add more tests and improve the documentation.
* Reordered, and wrote more docs.Thomas Heller2006-05-261-74/+127
|
* Write some docs.Thomas Heller2006-05-261-0/+40
|
* For now, I gave up with automatic conversion of reST to Python-latex,Thomas Heller2006-05-262-0/+207
| | | | | | so I'm writing this in latex now. Skeleton for the ctypes reference.
* Typo fixAndrew M. Kuchling2006-05-261-1/+1
|
* Add buffer support for struct, socketAndrew M. Kuchling2006-05-261-8/+40
|
* Add str.partition()Andrew M. Kuchling2006-05-261-0/+21
|
* Typo fixesAndrew M. Kuchling2006-05-261-1/+1
|
* Clarify docs for str.partition().Georg Brandl2006-05-261-4/+5
|
* needforspeed: partition implementation, part two.Fredrik Lundh2006-05-261-0/+8
| | | | feel free to improve the documentation and the docstrings.
* Add a x-ref to newer calling APIs.Georg Brandl2006-05-251-0/+4
|
* Someone seems to just have copy-pasted the docs ofGeorg Brandl2006-05-251-4/+4
| | | | tp_compare to tp_richcompare ;)
* fix broken links in PDFFred Drake2006-05-252-3/+22
| | | | (SF patch #1281291, contributed by Rory Yorke)
* Minor edits; add an itemAndrew M. Kuchling2006-05-251-2/+9
|
* Add itemAndrew M. Kuchling2006-05-231-0/+5
|
* Add two itemsAndrew M. Kuchling2006-05-231-4/+8
|
* Use 'speed' instead of 'performance', because I agree with the argumentAndrew M. Kuchling2006-05-231-2/+2
| | | | | at http://zestyping.livejournal.com/193260.html that 'erformance' really means something more general.
* Mention string improvementsAndrew M. Kuchling2006-05-231-1/+4
|
* Add some items; mention the sprintAndrew M. Kuchling2006-05-231-0/+18
|
* PyErr_NewException now accepts a tuple of base classes as itsGeorg Brandl2006-05-231-1/+2
| | | | "base" parameter.
* Apply patch #1492255 from Mike Foord.George Yoshida2006-05-211-3/+3
|
* Fix the TeX compile error.George Yoshida2006-05-211-1/+1
|
* Minor editsAndrew M. Kuchling2006-05-201-3/+3
|
* Apply patch #1492147 from Mike Foord.George Yoshida2006-05-201-1/+1
|
* - Add 'as' and 'with' as new keywords in 2.5.George Yoshida2006-05-201-9/+13
| | | | - Regenerate keyword lists with reswords.py.
* - markup fixGeorge Yoshida2006-05-202-4/+5
| | | | - add clarifying words
* Typo fix; add clarifying wordAndrew M. Kuchling2006-05-191-2/+2
|
* Bug #1490688: properly document %e, %f, %g format subtleties.Georg Brandl2006-05-181-11/+30
|
* Bug #1462152: file() now checks more thoroughly for invalid modeGeorg Brandl2006-05-181-1/+7
| | | | | strings and removes a possible "U" before passing the mode to the C library function.
* Patch #1180296: improve locale string formatting functionsGeorg Brandl2006-05-171-9/+52
|
* Apply patch #1489784 from Michael Foord.Georg Brandl2006-05-171-39/+62
|
* Remove misleading comment about type-class unification.Georg Brandl2006-05-171-6/+5
|
* Text files missing the SVN eol-style property.Tim Peters2006-05-1626-463/+463
|
* Document ImportWarningGeorge Yoshida2006-05-161-0/+5
|
* Mention that Exception is now a subclass of BaseException.George Yoshida2006-05-161-1/+1
| | | | | Remove a sentence that says that BaseException inherits from BaseException. (I guess this is just a copy & paste mistake.)