summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* 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.)
* PEP 243 has been withdrawn, so don't refer to it any more.Andrew M. Kuchling2006-05-161-26/+14
| | | | The PyPI upload material has been moved into the section on PEP314.
* Add itemAndrew M. Kuchling2006-05-161-0/+6
|
* Patch #1435422: zlib's compress and decompress objects now have aGeorg Brandl2006-05-161-0/+13
| | | | copy() method.
* Typo repair.Tim Peters2006-05-132-2/+2
|
* Teach PyString_FromFormat, PyErr_Format, and PyString_FromFormatVTim Peters2006-05-132-22/+57
| | | | | | | | | | | | about "%u", "%lu" and "%zu" formats. Since PyString_FromFormat and PyErr_Format have exactly the same rules (both inherited from PyString_FromFormatV), it would be good if someone with more LaTeX Fu changed one of them to just point to the other. Their docs were way out of synch before this patch, and I just did a mass copy+paste to repair that. Not a backport candidate (this is a new feature).
* Add \exception markupGeorge Yoshida2006-05-132-3/+3
|
* Integrated the rest of the pysqlite reference manual into the PythonGerhard Häring2006-05-121-44/+316
| | | | documentation. Ready to be reviewed and improved upon.
* Duplicated description about the illegal continue usage can be found in ↵George Yoshida2006-05-121-5/+2
| | | | | | nearly the same place. They are same, so keep the original one and remove the later-added one.
* At first there were 6 steps, but one was removed after that.George Yoshida2006-05-121-1/+1
|
* SF patch #1473132: Improve docs for tp_clear and tp_traverse,Tim Peters2006-05-121-4/+84
| | | | | | by Collin Winter. Bugfix candidate (but I'm not going to bother).
* typo fixAndrew M. Kuchling2006-05-111-2/+2
|
* Grammar fixGeorge Yoshida2006-05-111-2/+2
|
* Change WindowsError to carry the Win32 error code in winerror,Martin v. Löwis2006-05-111-1/+5
| | | | | and the DOS error code in errno. Revert changes where WindowsError catch blocks unnecessarily special-case OSError.
* Fix two small errors in argument lists.Georg Brandl2006-05-101-3/+3
|
* Clarify description of exception handlingAndrew M. Kuchling2006-05-101-8/+12
|
* Patch #1484695: Update the tarfile module to version 0.8. This fixesGeorg Brandl2006-05-101-1/+5
| | | | | a couple of issues, notably handling of long file names using the GNU LONGNAME extension.
* Bug #1484978: curses.panel: clarify that Panel objects are destroyed on ↵Georg Brandl2006-05-101-0/+3
| | | | garbage collection.
* Bug #1485447: subprocess: document that the "cwd" parameter isn't used to ↵Georg Brandl2006-05-101-6/+9
| | | | find the executable. Misc. other markup fixes.
* Bug #1482988: indicate more prominently that the Stats class is in the ↵Georg Brandl2006-05-101-2/+3
| | | | pstats module.
* Minor language editAndrew M. Kuchling2006-05-071-5/+5
|
* [Patch #1479977] Revised version of urllib2 HOWTO, edited by John J. LeeAndrew M. Kuchling2006-05-071-143/+308
|
* Use \versionchanged for the feature changeGeorge Yoshida2006-05-061-3/+3
|
* describe optional arguments for DocFileSuiteGeorge Yoshida2006-05-061-1/+5
|
* Get rid of a couple more context object references, fix some markup and ↵Nick Coghlan2006-05-032-9/+10
| | | | clarify what happens when a generator context function swallows an exception.
* Finish bringing SVN into line with latest version of PEP 343 by getting rid ↵Nick Coghlan2006-05-034-76/+56
| | | | of all remaining references to context objects that I could find. Without a __context__() method context objects no longer exist. Also get test_with working again, and adopt a suggestion from Neal for decimal.Context.get_manager()
* Correct some formulations, fix XXX comments.Martin v. Löwis2006-05-031-7/+5
|
* Whitespace normalization.Tim Peters2006-05-037-71/+63
|
* fix up whitespace in prompt stringsFred Drake2006-05-031-1/+1
|
* one more place to avoid extra markup (how many will there be?)Fred Drake2006-05-031-1/+1
|
* one more place to avoid extra markupFred Drake2006-05-031-1/+1
|
* at least comment on why curly-quotes are not enabledFred Drake2006-05-031-0/+3
|