summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Remove extra 'types'Neal Norwitz2003-01-101-3/+3
| | | | Change a couple of list -> mylist
* SF bug #652888: bad documentation for the "type" builtinRaymond Hettinger2003-01-101-6/+22
| | | | | | | | | | Clarified that not all types are included. The OP was looking for a StaticMethodType. Also, added a note and example suggesting the use of int,str, etc. instead of IntType, StrType, etc. Renamed the crummy variable name in the example from "list" to "mylist".
* Purged reference to defunct datetimetz.Tim Peters2003-01-091-1/+1
|
* Various minor editsAndrew M. Kuchling2003-01-091-27/+30
|
* Markup fixAndrew M. Kuchling2003-01-091-0/+1
|
* Massive fiddling to reflect that datetimetz and timetz no longer exist.Tim Peters2003-01-091-556/+266
| | | | | | | | | | WARNING: It would be a minor miracle if the LaTeX stuff still worked. s/field/member/ generally everywhere, to conform with most other usage in the docs. s/daylight savings time/daylight saving time/ generally everywhere, because the latter spelling is anally correct.
* Add notes about the linuxaudiodev and ossaudiodev modules.Fred Drake2003-01-081-0/+8
|
* command doesn't work, but program does, not sure it's correct, thoughNeal Norwitz2003-01-081-1/+1
|
* There's no such method as has_option() -- should be has_extn().Greg Ward2003-01-081-2/+2
|
* Rewrite awkward/ungrammatical sentence.Greg Ward2003-01-081-3/+3
| | | | Typo fix.
* Bump version numberAndrew M. Kuchling2003-01-081-1/+1
|
* Document EX_OK and friends.Barry Warsaw2003-01-071-0/+114
|
* SF #664011, move tarfile module in docsNeal Norwitz2003-01-071-1/+1
|
* Add tarfile moduleAndrew M. Kuchling2003-01-071-0/+4
|
* Add Tix and rexec changesAndrew M. Kuchling2003-01-061-1/+17
|
* Fix spelling.Raymond Hettinger2003-01-061-1/+1
|
* SF #642236, optparse LaTeX docs by Johannes GijsbersNeal Norwitz2003-01-066-0/+1821
|
* Strike any hint that from-import-* could ever be reasonable; it's aFred Drake2003-01-061-2/+1
| | | | vile abomination and should be eradicated!
* Fix some nits Guido brought up last August:Fred Drake2003-01-061-10/+8
| | | | | | - give subsection pages nicer names - shorten some really long table cells; table cells can't wrap in the typeset version of the documentation
* Fix markup so this will format again.Fred Drake2003-01-061-1/+1
|
* SF bug #592859: os.chmod is underdocumentedRaymond Hettinger2003-01-061-0/+22
| | | | Document constants for permission bits.
* SF bug #661848 and #631055: Clarify use of __all__.Raymond Hettinger2003-01-061-1/+4
|
* SF #651082, tarfile module implementation from Lars GustäbelNeal Norwitz2003-01-053-0/+452
|
* Fix a typoNeal Norwitz2003-01-051-1/+1
|
* datetime_from_timet_and_us(): ignore leap seconds if the platformTim Peters2003-01-041-20/+34
| | | | | | | localtime()/gmtime() insists on delivering them, + associated doc changes. Redid the docs for datetimtez.astimezone().
* A new implementation of astimezone() that does what we agreed on in allTim Peters2003-01-042-6/+111
| | | | | | cases, plus even tougher tests of that. This implementation follows the correctness proof very closely, and should also be quicker (yes, I wrote the proof before the code, and the code proves the proof <wink>).
* SF bug #655271: Slightly modify locals() docRaymond Hettinger2003-01-041-1/+1
| | | | Clarify the operation of locals().
* SF bug #651149: Review libshelve.tex when possibleRaymond Hettinger2003-01-041-6/+6
| | | | Minor fixes to markup, spelling, parameter names, and abbreviations.
* Replaced the flawed "local time" example tzinfo class with the gutsTim Peters2003-01-031-13/+39
| | | | of Guido's later Local.py (from the datetime sandbox).
* Grammatical fix: change possessive "it's" to "its".Greg Ward2003-01-031-3/+3
|
* Spread the blame (err, I mean credit) for ossaudiodev around a bit.Greg Ward2003-01-031-1/+1
|
* Write PEP 301 sectionAndrew M. Kuchling2003-01-031-2/+39
| | | | Mention difference between 2.2.2 and 2.3 True and False
* Add SSL support for imaplib; add empty PEP301 sectionAndrew M. Kuchling2003-01-031-0/+15
|
* [Patch #658093 ] Documentation support for PEP 301Andrew M. Kuchling2003-01-031-3/+124
| | | | | Add two sections to this manual about package meta-data and about registering packages
* Add contributor.Raymond Hettinger2003-01-031-0/+1
|
* Fix error in previous correction; thanks, Just!Andrew M. Kuchling2003-01-021-1/+0
|
* Fix PEP 302 description; bump version numberAndrew M. Kuchling2003-01-021-10/+17
|
* The tzinfo methods utcoffset() and dst() must return a timedelta objectTim Peters2003-01-022-21/+23
| | | | | | (or None) now. In 2.3a1 they could also return an int or long, but that was an unhelpfully redundant leftover from an earlier version wherein they couldn't return a timedelta. TOOWTDI.
* Allow list sort's comparison function to explicitly be None. See SF patchSkip Montanaro2003-01-021-5/+6
| | | | 661092.
* astimezone() internals: if utcoffset() returns a duration, complain ifTim Peters2003-01-021-13/+19
| | | | dst() returns None (instead of treating that as 0).
* Update the copyright year.Guido van Rossum2003-01-021-1/+1
|
* Add some version info for new methods and classNeal Norwitz2003-01-021-0/+3
|
* Fix an exampleAndrew M. Kuchling2003-01-021-2/+1
|
* - documented Ellipsis, NotImplementedFred Drake2003-01-021-9/+20
| | | | | - minor markup changes - indented for consistency with newer content
* Add dependency info for the recently added lib/libconsts.tex.Fred Drake2003-01-021-0/+1
|
* Document that apply() is deprecated. See:Fred Drake2003-01-021-0/+3
| | | | http://mail.python.org/pipermail/python-dev/2003-January/031556.html
* A quicker astimezone() implementation, rehabilitating an earlierTim Peters2003-01-011-6/+23
| | | | | | | | | | | | | | | | | | | suggestion from Guido, along with a formal correctness proof of the trickiest bit. The intricacy of the proof reveals how delicate this is, but also how robust the conclusion: correctness doesn't rely on dst() returning +- one hour (not all real time zones do!), it only relies on: 1. That dst() returns a (any) non-zero value if and only if daylight time is in effect. and 2. That the tzinfo subclass implements a consistent notion of time zone. The meaning of "consistent" was a hidden assumption, which is now an explicit requirement in the docs. Alas, it's an unverifiable (by the datetime implementation) requirement, but so it goes.
* mention built-in constants.Skip Montanaro2003-01-011-2/+4
|
* process libconsts.texSkip Montanaro2003-01-011-0/+1
|
* new section - builtin constantsSkip Montanaro2003-01-011-0/+20
|