Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Added documentation for sys.maxunicode and sys.warnoptions. | Fred Drake | 2001-09-04 | 1 | -1/+14 |
| | | | | | Fixed a markup error which caused an em dash to be presented as a minus sign. This closes SF bug #458350. | ||||
* | New restriction on pow(x, y, z): If z is not None, x and y must be of | Tim Peters | 2001-09-03 | 1 | -6/+12 |
| | | | | | integer types, and y must be >= 0. See discussion at http://sf.net/tracker/index.php?func=detail&aid=457066&group_id=5470&atid=105470 | ||||
* | Move the long minidom example to a separate file; \verbatiminput does the | Fred Drake | 2001-09-02 | 2 | -67/+66 |
| | | | | | | right thing with page breaks in long examples, while the verbatim environment does not. This causes the example to wrap to the next page instead of overwriting the page footer and bottom margin. | ||||
* | Added the "Host" header to the "GET" example. | Fred Drake | 2001-09-01 | 1 | -0/+1 |
| | | | | This closes SF bug #457100. | ||||
* | Update the links to the FIPS document that defines the Secure Hash | Fred Drake | 2001-08-30 | 1 | -8/+9 |
| | | | | Algorithm. This closes SF bug #454917. | ||||
* | Add a new function imp.lock_held(), and use it to skip test_threaded_import | Tim Peters | 2001-08-30 | 1 | -0/+13 |
| | | | | when that test is doomed to deadlock. | ||||
* | Added explanation that [...] * n generates shallow copies of [...], so | Fred Drake | 2001-08-28 | 1 | -2/+26 |
| | | | | | | the contents will be shared by multiple references. This closes SF bug #455694. | ||||
* | Fix a number of minor markup errors, and improve the consistency a bit. | Fred Drake | 2001-08-28 | 1 | -16/+16 |
| | |||||
* | Plant a mention in the description of backreferences of the fact that | Eric S. Raymond | 2001-08-28 | 1 | -1/+5 |
| | | | | while \0 doesn't do what one might expect, \g<0> does. | ||||
* | Docs for the PEP 264 changes. | Michael W. Hudson | 2001-08-27 | 3 | -11/+89 |
| | |||||
* | SF patch #454553 by Walter Dörwald: auto-guess content-type header for | Guido van Rossum | 2001-08-23 | 1 | -1/+2 |
| | | | | ftp urls. | ||||
* | indicate that mktime is platform-dependent. See SF bug 434143. | Skip Montanaro | 2001-08-22 | 1 | -1/+2 |
| | |||||
* | indicate that the years for which the calendar function will work are | Skip Montanaro | 2001-08-22 | 1 | -1/+2 |
| | | | | platform dependent. See SF bug 434143. | ||||
* | Added documentation for BoundedSemaphore(), contributed by Skip Montanaro. | Fred Drake | 2001-08-20 | 1 | -2/+40 |
| | | | | This closes SF patch #452836. | ||||
* | Clean up some argument profiles, enrich the docstring. | Eric S. Raymond | 2001-08-20 | 1 | -14/+14 |
| | |||||
* | Improve Windows time.clock() blurb; was missing return type and unit. | Tim Peters | 2001-08-19 | 1 | -4/+4 |
| | |||||
* | Framework code for compilerlike scripts. | Eric S. Raymond | 2001-08-18 | 1 | -0/+87 |
| | |||||
* | Document that uu.decode() will always raise a uu.Error if out_file | Barry Warsaw | 2001-08-17 | 1 | -9/+18 |
| | | | | | isn't given, and the file in the uu header already exists. Also add a description of the uu.Error exception class. | ||||
* | Re-write the description of the os.spawn*() functions, and cover the | Fred Drake | 2001-08-16 | 1 | -17/+51 |
| | | | | | | | whole family instead of just two. This closes SF bug #451630. | ||||
* | Fix a minor typo and mark an exception name that was missed. | Fred Drake | 2001-08-14 | 1 | -1/+1 |
| | |||||
* | Describe the new semantics for setting and deleting a function's | Barry Warsaw | 2001-08-14 | 1 | -10/+5 |
| | | | | | | | | | __dict__ attribute. Deleting it, or setting it to a non-dictionary result in a TypeError. Note that getting it the first time magically initializes it to an empty dict so that func.__dict__ will always appear to be a dictionary (never None). Closes SF bug #446645. | ||||
* | Insert omitted "the". | Fred Drake | 2001-08-14 | 1 | -1/+1 |
| | |||||
* | Add the smtpd module to the list of undocumented modules; Barry needs to | Fred Drake | 2001-08-14 | 1 | -0/+4 |
| | | | | write the documentation for this module. | ||||
* | David Goodger <dgoodger@atsautomation.com>: | Fred Drake | 2001-08-13 | 1 | -27/+240 |
| | | | | | | | Documentation for difflib/ndiff refactoring: more of the ndiff functionality has been moved to the underlying library (difflib). This closes SF patch #445413. | ||||
* | For the escape() function, added a reference to the quoteattrs() function | Fred Drake | 2001-08-11 | 1 | -17/+22 |
| | | | | | | | | in xml.sax.saxutils, since that is the right function to use for quoting attribute values. This closes SF bug #444707. Cleaned up a variety of other minor markup errors. | ||||
* | Add a note that the quoteattr() function is useful for HTML and SGML | Fred Drake | 2001-08-10 | 1 | -0/+2 |
| | | | | attributes as well. | ||||
* | Added a warning about reference cycles and memory consumption to the | Fred Drake | 2001-08-10 | 1 | -0/+10 |
| | | | | | | section on functions which return stack frames. This closes SF bug #449258. | ||||
* | Usage fix, problem reported by Keith Briggs. | Fred Drake | 2001-08-10 | 1 | -1/+1 |
| | |||||
* | Added documentation for the new rich comparison support. | Fred Drake | 2001-08-10 | 1 | -73/+147 |
| | | | | | | | | | This closes SF patch #428320. Added documentation for the new floordiv() and truediv() functions. This is part of SF bug #449093. Re-organized the listing of functions to get better logical grouping. | ||||
* | Expose nl_langinfo through locale where available. | Martin v. Löwis | 2001-08-10 | 1 | -0/+119 |
| | |||||
* | Patch #448474: Add support for tell() and seek() to gzip.GzipFile. | Martin v. Löwis | 2001-08-09 | 1 | -2/+2 |
| | |||||
* | Clean up some of the markup here -- be more consistent in the use of | Fred Drake | 2001-08-08 | 1 | -9/+9 |
| | | | | semantic labels instead of presentational markup. | ||||
* | Add a comment on time.time() returning non-decreasing values except when | Fred Drake | 2001-08-05 | 1 | -1/+3 |
| | | | | | | the clock is set back. This closes SF bug #447945. | ||||
* | Document IPv6 changes. Contributed by itojun. | Martin v. Löwis | 2001-08-04 | 2 | -29/+206 |
| | |||||
* | Note that the mimetypes.MimeTypes class was added in Python 2.2. | Fred Drake | 2001-08-04 | 1 | -0/+2 |
| | |||||
* | Add documentation for the new aspects of the mimetypes module. | Fred Drake | 2001-08-03 | 1 | -1/+70 |
| | | | | This closes the SF bug (feature request) #439710. | ||||
* | Apply the new \mailheader macro where appropriate, and fix a few small | Fred Drake | 2001-08-03 | 5 | -54/+57 |
| | | | | markup inconsistencies. | ||||
* | Fix some of the example code; the reference objects do not support a | Fred Drake | 2001-08-03 | 1 | -3/+3 |
| | | | | | | | get() method; just calling them is sufficient. (There was a get() method for this in an early version of the implementation.) Reported by Mats Wichmann. | ||||
* | Add a caveat about boundary conditions and RE concatenation, so that the | Fred Drake | 2001-08-02 | 1 | -9/+12 |
| | | | | | | | documents do not make an overly-strong assertion about the properties of RE concatenation. Add an example of RE{m,} syntax and what it will and will not match. | ||||
* | Cleaned up the description of readline.set_completer(). | Fred Drake | 2001-08-01 | 1 | -4/+7 |
| | | | | Thanks to Nathaniel Gray for reporting the confusion. | ||||
* | Added an example of a string value for the replacement parameter to | Fred Drake | 2001-08-01 | 1 | -44/+60 |
| | | | | | | | | | re.sub(). This closes SF bug #446136. Fixed description of RE modifiers so that RE{#} and RE{#,} are more clearly described and disambiguated (plain RE{#} had not been described at all). Reported by Jeremy Craven via email. | ||||
* | Fix description of buffer_info(), and add a note that there is a better | Fred Drake | 2001-08-01 | 1 | -6/+15 |
| | | | | | | way... This closes SF bug #444842. | ||||
* | Make some adjustments to the markup, and fix up some style-guide issues. | Fred Drake | 2001-07-29 | 1 | -17/+17 |
| | |||||
* | Patch #416224: add readline completion to cmd.Cmd. | Martin v. Löwis | 2001-07-28 | 1 | -1/+23 |
| | |||||
* | Typo fix. | Greg Ward | 2001-07-26 | 1 | -1/+1 |
| | |||||
* | SF bug #444510: int() should guarantee truncation. | Tim Peters | 2001-07-26 | 1 | -3/+1 |
| | | | | It's guaranteed now, assuming the platform modf() works correctly. | ||||
* | Patch #411138: Rename config.h to pyconfig.h. Closes bug #231774. | Martin v. Löwis | 2001-07-26 | 2 | -3/+3 |
| | |||||
* | trivial rewording in footnote 5. | Skip Montanaro | 2001-07-25 | 1 | -2/+2 |
| | |||||
* | Add entry for the new distutils section. | Fred Drake | 2001-07-24 | 1 | -0/+1 |
| | |||||
* | Overview comments for the distutils package, with links to the distutils | Fred Drake | 2001-07-24 | 1 | -0/+37 |
| | | | | | manuals for more information. This is being added to make it easier to find the documentation for the distutils code. |