Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | SF #664011, move tarfile module in docs | Neal Norwitz | 2003-01-07 | 1 | -1/+1 |
| | |||||
* | Fix spelling. | Raymond Hettinger | 2003-01-06 | 1 | -1/+1 |
| | |||||
* | SF #642236, optparse LaTeX docs by Johannes Gijsbers | Neal Norwitz | 2003-01-06 | 5 | -0/+1817 |
| | |||||
* | Strike any hint that from-import-* could ever be reasonable; it's a | Fred Drake | 2003-01-06 | 1 | -2/+1 |
| | | | | vile abomination and should be eradicated! | ||||
* | Fix some nits Guido brought up last August: | Fred Drake | 2003-01-06 | 1 | -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 Drake | 2003-01-06 | 1 | -1/+1 |
| | |||||
* | SF bug #592859: os.chmod is underdocumented | Raymond Hettinger | 2003-01-06 | 1 | -0/+22 |
| | | | | Document constants for permission bits. | ||||
* | SF #651082, tarfile module implementation from Lars Gustäbel | Neal Norwitz | 2003-01-05 | 2 | -0/+451 |
| | |||||
* | Fix a typo | Neal Norwitz | 2003-01-05 | 1 | -1/+1 |
| | |||||
* | datetime_from_timet_and_us(): ignore leap seconds if the platform | Tim Peters | 2003-01-04 | 1 | -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 all | Tim Peters | 2003-01-04 | 2 | -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() doc | Raymond Hettinger | 2003-01-04 | 1 | -1/+1 |
| | | | | Clarify the operation of locals(). | ||||
* | SF bug #651149: Review libshelve.tex when possible | Raymond Hettinger | 2003-01-04 | 1 | -6/+6 |
| | | | | Minor fixes to markup, spelling, parameter names, and abbreviations. | ||||
* | Replaced the flawed "local time" example tzinfo class with the guts | Tim Peters | 2003-01-03 | 1 | -13/+39 |
| | | | | of Guido's later Local.py (from the datetime sandbox). | ||||
* | The tzinfo methods utcoffset() and dst() must return a timedelta object | Tim Peters | 2003-01-02 | 2 | -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 patch | Skip Montanaro | 2003-01-02 | 1 | -5/+6 |
| | | | | 661092. | ||||
* | astimezone() internals: if utcoffset() returns a duration, complain if | Tim Peters | 2003-01-02 | 1 | -13/+19 |
| | | | | dst() returns None (instead of treating that as 0). | ||||
* | Add some version info for new methods and class | Neal Norwitz | 2003-01-02 | 1 | -0/+3 |
| | |||||
* | - documented Ellipsis, NotImplemented | Fred Drake | 2003-01-02 | 1 | -9/+20 |
| | | | | | - minor markup changes - indented for consistency with newer content | ||||
* | Document that apply() is deprecated. See: | Fred Drake | 2003-01-02 | 1 | -0/+3 |
| | | | | http://mail.python.org/pipermail/python-dev/2003-January/031556.html | ||||
* | A quicker astimezone() implementation, rehabilitating an earlier | Tim Peters | 2003-01-01 | 1 | -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 Montanaro | 2003-01-01 | 1 | -2/+4 |
| | |||||
* | process libconsts.tex | Skip Montanaro | 2003-01-01 | 1 | -0/+1 |
| | |||||
* | new section - builtin constants | Skip Montanaro | 2003-01-01 | 1 | -0/+20 |
| | |||||
* | - use classdesc where we can (for better indexing) | Fred Drake | 2002-12-31 | 1 | -35/+42 |
| | | | | - more style consistency crud | ||||
* | General style conformance. Markup some unmarked constructs. | Fred Drake | 2002-12-31 | 1 | -449/+478 |
| | |||||
* | Use funcdesc instead of classdesc to be consistent with out sections. | Raymond Hettinger | 2002-12-31 | 1 | -4/+4 |
| | |||||
* | Further cleanup of exceptions. All interpolation-related exceptions | Fred Drake | 2002-12-31 | 1 | -3/+12 |
| | | | | | now derive from InterpolationError, which is not raised directly (only subclasses get raised). This matches what the docs already said. | ||||
* | Spelling fix | Raymond Hettinger | 2002-12-31 | 1 | -1/+1 |
| | |||||
* | Add markup for time object. | Raymond Hettinger | 2002-12-31 | 1 | -22/+23 |
| | | | | | Cleanup whitespace. Fix unbalanced parenthesis. | ||||
* | Removed the now-untrue (or soon-to-be untrue) part of the astimezone() | Tim Peters | 2002-12-31 | 1 | -10/+7 |
| | | | | | | | | docs. Replaced it with an XXX block, because the hoped-for treatment of DST endcases remains unclear (Guido doesn't really like raising an exception when it's impossible to deliver a correct result, but so far I have no way in hand to consistently deliver a defined incorrect result either). | ||||
* | Document the new ,netrc awareness in nntplib. | Eric S. Raymond | 2002-12-31 | 1 | -2/+3 |
| | |||||
* | Barry raised reasonable objections to the macro name \mimeheader, so | Fred Drake | 2002-12-31 | 1 | -1/+1 |
| | | | | we'll simply revert to \mailheader since there's no other good name. | ||||
* | - correct the deprecation markups so this formats again | Fred Drake | 2002-12-31 | 1 | -9/+7 |
| | | | | - some minor cleanups | ||||
* | Complete the markup for timedelta objects. | Raymond Hettinger | 2002-12-31 | 1 | -36/+28 |
| | | | | Fix a curly brace that should have been a paren. | ||||
* | Use the name (path) specified in the parameter list | Neal Norwitz | 2002-12-31 | 1 | -4/+4 |
| | |||||
* | Patch #658927: Add getctime to os.path. | Martin v. Löwis | 2002-12-31 | 1 | -2/+12 |
| | | | | Document that getatime and getmtime may return floats. | ||||
* | Document standard encodings. | Martin v. Löwis | 2002-12-31 | 1 | -0/+343 |
| | |||||
* | SmartCookie and SerialCookie were recently deprecated | Neal Norwitz | 2002-12-31 | 1 | -0/+2 |
| | |||||
* | InterpolationSyntaxError was added in 2.3 | Neal Norwitz | 2002-12-31 | 1 | -0/+1 |
| | |||||
* | Phrase repair. | Guido van Rossum | 2002-12-31 | 1 | -1/+1 |
| | |||||
* | Minor markup and spelling repair. | Guido van Rossum | 2002-12-31 | 1 | -2/+3 |
| | |||||
* | - re-mark ESR's warning about extended registry syntax | Fred Drake | 2002-12-30 | 1 | -3/+11 |
| | | | | - document InterpolationSyntaxError | ||||
* | - fix use of \refmodule markup | Fred Drake | 2002-12-30 | 4 | -13/+15 |
| | | | | | - correct some module names, add hyperlinks - wrap some long lines | ||||
* | Add dummy_thread[ing] sections and reference these from libthread[ing]. | Guido van Rossum | 2002-12-30 | 3 | -1/+8 |
| | |||||
* | Brett Cannon's dummy_thread and dummy_threading modules (SF patch | Guido van Rossum | 2002-12-30 | 2 | -0/+44 |
| | | | | 622537), with some nitpicking editorial changes. | ||||
* | We're using strictly American spellings, so there's no diaresis over | Fred Drake | 2002-12-30 | 1 | -53/+56 |
| | | | | | | the i in naive. More markup fixups. | ||||
* | A step on the way to making tzinfo classes writable by mortals: get rid | Tim Peters | 2002-12-30 | 1 | -17/+37 |
| | | | | | | | of the timetz case. A tzinfo method will always see a datetimetz arg, or None, now. In the former case, it's still possible that it will get a datetimetz argument belonging to a different timezone. That will get fixed next. | ||||
* | Clean up a table so it passes formatting. | Fred Drake | 2002-12-30 | 1 | -12/+19 |
| | |||||
* | Added the \var{} markup so the tables will look good. | Raymond Hettinger | 2002-12-30 | 1 | -8/+9 |
| |