Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 |
| | |||||
* | Added markup upto line 233. | Raymond Hettinger | 2002-12-30 | 1 | -58/+57 |
| | |||||
* | Describe the new `errors' argument to Header.__init__() and | Barry Warsaw | 2002-12-30 | 1 | -2/+9 |
| | | | | Header.append() | ||||
* | More markup additions | Andrew M. Kuchling | 2002-12-30 | 1 | -156/+264 |
| | |||||
* | Minor grammar fix, and clarification | Andrew M. Kuchling | 2002-12-30 | 1 | -2/+2 |
| | |||||
* | Mark up more text | Andrew M. Kuchling | 2002-12-30 | 1 | -117/+148 |
| | |||||
* | SF patch 658251: Install a C implementation of the Mersenne Twister as the | Raymond Hettinger | 2002-12-29 | 1 | -83/+55 |
| | | | | core generator for random.py. | ||||
* | Incorporate Skip's suggestion to use SciPy's validation test near | Raymond Hettinger | 2002-12-29 | 1 | -0/+24 |
| | | | | | | equality. Note, there is another flavor that compares to a given number of significant digits rather than decimal places. If there is a demand, that could be added at a later date. | ||||
* | SF Bug 645777: list.extend() works with any iterable and is no longer | Raymond Hettinger | 2002-12-29 | 1 | -3/+1 |
| | | | | experimental. | ||||
* | astimezone(): document that None is an OK argument. | Tim Peters | 2002-12-27 | 1 | -4/+5 |
| | |||||
* | Added a useful warning to the documentation. | Eric S. Raymond | 2002-12-27 | 1 | -2/+4 |
| | |||||
* | Document killpg. | Martin v. Löwis | 2002-12-27 | 1 | -0/+8 |
| | |||||
* | Patch #657889: Implement posix.getloadavg. | Martin v. Löwis | 2002-12-27 | 1 | -0/+8 |
| | |||||
* | Make comparison and subtraction of aware objects ignore tzinfo if the | Tim Peters | 2002-12-27 | 1 | -23/+29 |
| | | | | | | operands have identical tzinfo members (meaning object identity -- "is"). I misunderstood the intent here, reading wrong conclusion into conflicting clues. | ||||
* | Backing out patch #642578 in anticipation of final acceptance of PEP 302. | Just van Rossum | 2002-12-25 | 1 | -15/+0 |
| | |||||
* | SF 658405: calendar.py to rely on the datetime module instead of the time | Raymond Hettinger | 2002-12-25 | 1 | -4/+6 |
| | | | | | | | | | module. The code is shorter, more readable, faster, and dramatically increases the range of acceptable dates. Also, used the floor division operator in leapdays(). | ||||
* | Implemented datetime.astimezone() and datetimetz.astimezone(). | Tim Peters | 2002-12-25 | 1 | -0/+22 |
| | |||||
* | Removed blurb admonishing users to raise an exception if the datetime | Tim Peters | 2002-12-24 | 1 | -2/+1 |
| | | | | argument to a tzinfo method doesn't have a matching tzinfo member. | ||||
* | Added note about technical pickle limitation on tzinfo instances. | Tim Peters | 2002-12-24 | 1 | -1/+6 |
| | |||||
* | tzinfo.{utcoffset,dst} can return timedelta (or integer or None). | Tim Peters | 2002-12-24 | 1 | -15/+21 |
| | | | | {timetz,datetimetz}.{uctcoffset,dst} do return timedelta (or None). | ||||
* | Implemented .replace() methods for date, datetime, datetimetz, time and | Tim Peters | 2002-12-24 | 1 | -1/+28 |
| | | | | timetz. | ||||
* | Brought the strftime explanation into synch with the plain-text sandbox | Tim Peters | 2002-12-23 | 1 | -45/+56 |
| | | | | | docs, and moved its section to the end (before the "C API" section, which latter doesn't really belong in the Library manual). | ||||
* | Add in the datetime docs now that they pass LaTeX. Still ugly, but that can | Fred Drake | 2002-12-23 | 1 | -0/+1 |
| | | | | be fixed. | ||||
* | Lots of markup changes. This is still pretty sad, but passes LaTeX | Fred Drake | 2002-12-23 | 1 | -483/+558 |
| | | | | and is mostly readable. | ||||
* | Move the examples of concrete tzinfo classes to a separate file, so the | Fred Drake | 2002-12-23 | 1 | -0/+51 |
| | | | | verbatim environment does not bollux page breaking. | ||||
* | Added docs for (draft) pkgutil module. | Fred Drake | 2002-12-23 | 2 | -0/+51 |
| | |||||
* | Fixed longstanding bug in the description of strftime's %W code. | Tim Peters | 2002-12-20 | 1 | -1/+1 |
| | |||||
* | Check in current, unfinished, draft of datetime docs | Andrew M. Kuchling | 2002-12-18 | 1 | -0/+1139 |
| | | | | (Fred, don't bother to add to lib.tex or to proofread this yet.) | ||||
* | Fix some small markup nits. | Fred Drake | 2002-12-18 | 1 | -5/+5 |
| | |||||
* | Fix typo spotted by Richie Hindle | Neal Norwitz | 2002-12-18 | 1 | -1/+1 |
| | |||||
* | This is Richie Hindle's patch | Michael W. Hudson | 2002-12-17 | 1 | -1/+11 |
| | | | | | | | | [ 643835 ] Set Next Statement for Python debuggers with a few tweaks by me: adding an unsigned or two, mentioning that not all jumps are allowed in the doc for pdb, adding a NEWS item and a note to whatsnew, and AuCTeX doing something cosmetic to libpdb.tex. | ||||
* | Add markup for base parameter | Neal Norwitz | 2002-12-17 | 1 | -2/+2 |
| | |||||
* | Fix SF # 641111, Undocumented side effect of eval | Neal Norwitz | 2002-12-17 | 1 | -1/+6 |
| | | | | | | | | Try to clear up confusion about the current globals being copied into a globals dict passed to eval(). This wording (more or less) was suggested in bug report. It should probably be made clearer. Backport candidate. | ||||
* | Fix SF #642742, property() builtin not documented | Neal Norwitz | 2002-12-17 | 1 | -0/+78 |
| | | | | | | | | Added doc for functions new to 2.2: classmethod property staticmethod super Taken from docstrings. Could use review. Hope there wasn't a reason why these shouldn't have been added. Backport candidate. | ||||
* | Fixed bug | Gustavo Niemeyer | 2002-12-16 | 1 | -1/+3 |
| | | | | | | | | | | | | | | | | | [#521782] unreliable file.read() error handling * Objects/fileobject.c (file_read): Clear errors before leaving the loop in all situations, and also check if some data was read before exiting the loop with an EWOULDBLOCK exception. * Doc/lib/libstdtypes.tex * Objects/fileobject.c Document that sometimes a read() operation can return less data than what the user asked, if running in non-blocking mode. * Misc/NEWS Document the fix. | ||||
* | typo fix. | Just van Rossum | 2002-12-15 | 1 | -1/+1 |
| | |||||
* | Apply SF patch 652930: Add optional base argument to math.log(x[, base]). | Raymond Hettinger | 2002-12-14 | 1 | -2/+4 |
| | |||||
* | Enhance issubclass() and PyObject_IsSubclass() so that a tuple is | Walter Dörwald | 2002-12-12 | 1 | -5/+7 |
| | | | | | | | | | | | supported as the second argument. This has the same meaning as for isinstance(), i.e. issubclass(X, (A, B)) is equivalent to issubclass(X, A) or issubclass(X, B). Compared to isinstance(), this patch does not search the tuple recursively for classes, i.e. any entry in the tuple that is not a class, will result in a TypeError. This closes SF patch #649608. | ||||
* | Patch #651621, approved by MvL. | Just van Rossum | 2002-12-12 | 1 | -5/+7 |
| | | | | | | | | | | | | | | | | This patch allows ZipFile.writestr() to be called with an archive file name instead of a ZipInfo instance: z = ZipFile("myarchive.zip", "w") z.writestr("foo/baz/file.ext", data) z.close() I found the old writestr() method very inconvenient for simple (but common) things. If called with a file name instead of a ZipInfo instance, the date_time is set to the current date/time, which makes sense to me for anonymous data. |