Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Patch #830858: Update number of functions starting with "is". | Martin v. Löwis | 2003-10-31 | 1 | -1/+1 |
| | |||||
* | [Bug #811681] The asynchat documentation would also apply to the 2.2 version ↵ | Andrew M. Kuchling | 2003-09-25 | 1 | -0/+1 |
| | | | | of the module, but the docs aren't included. This adds a copy of libasynchat.tex. | ||||
* | remove extra word occurance; reported to webmaster | Fred Drake | 2003-08-27 | 1 | -1/+1 |
| | |||||
* | Backporting email 2.5.4 fixes from the trunk. | Barry Warsaw | 2003-08-19 | 1 | -5/+8 |
| | |||||
* | - update documentation contact address | Fred Drake | 2003-07-29 | 1 | -1/+2 |
| | |||||
* | Update URL. | Fred Drake | 2003-07-28 | 1 | -1/+1 |
| | |||||
* | - Americanize a spelling | Fred Drake | 2003-07-24 | 1 | -3/+3 |
| | | | | | - remove extraneous blank lines - add missing \end{methoddesc} (prevented formatting) | ||||
* | correct link | Skip Montanaro | 2003-07-14 | 1 | -1/+1 |
| | |||||
* | Patch #549151, rev4: redirect POST on 301 also. | Martin v. Löwis | 2003-07-12 | 2 | -9/+17 |
| | |||||
* | Update Tkinter3000 notes based on text from Fredrik Lundh. | Fred Drake | 2003-07-08 | 1 | -7/+9 |
| | |||||
* | Fix SF bug #766288, property() example gives syntax error | Neal Norwitz | 2003-07-05 | 1 | -1/+1 |
| | |||||
* | Backport tim_one's checkin: | Neal Norwitz | 2003-07-01 | 1 | -1/+1 |
| | | | | showwarning() calls formatwarning(), not showwarning(). | ||||
* | Avoid 'dir' as a variable name. Use os.path.join() to join path elements | Skip Montanaro | 2003-06-19 | 1 | -4/+4 |
| | | | | together. | ||||
* | Remove unused line numbers from example code. | Fred Drake | 2003-05-20 | 1 | -28/+27 |
| | | | | Line numbering of examples is not used elsewhere. | ||||
* | Fixing typo from previous patch. | Brett Cannon | 2003-05-20 | 1 | -2/+2 |
| | |||||
* | Add docs for use of key_file and cert_file parameters. | Brett Cannon | 2003-05-20 | 1 | -1/+6 |
| | |||||
* | Fix nits found by Tools\scripts\texcheck.py | Raymond Hettinger | 2003-05-16 | 16 | -24/+24 |
| | |||||
* | At the site of an indexed reference to print, point to the relevant | Fred Drake | 2003-04-30 | 1 | -0/+4 |
| | | | | documentation. Closes SF bug #723136. | ||||
* | - clean up some extra punctuation hidden in indexing markup | Fred Drake | 2003-04-29 | 1 | -13/+10 |
| | | | | | - fix a typo and one markup nit - normalize whitespace | ||||
* | Clarify that the timeout argument to read_until() is in seconds. | Fred Drake | 2003-04-29 | 1 | -1/+2 |
| | |||||
* | SF bug #729096: getopt online documentation example improvement | Raymond Hettinger | 2003-04-29 | 1 | -1/+4 |
| | | | | | | | | | A newbie found it difficult to translate the exampe into a case that used only short options or long options but not both. He tried to shorten the tuple search but forgot the trailing comma, The appropriate pattern is an equality check. Revised the example to point him in the right direction. | ||||
* | backport of note arising from bug 711019. | Skip Montanaro | 2003-04-26 | 1 | -1/+11 |
| | |||||
* | Markup change; make the notice a little stronger by using the "boxed" | Fred Drake | 2003-04-25 | 1 | -6/+9 |
| | | | | version. | ||||
* | Add modified versions of the examples from Sean Reifschneider | Fred Drake | 2003-04-25 | 1 | -0/+36 |
| | | | | (SF patch #545480). | ||||
* | Backport 1.47 and 1.7 | Raymond Hettinger | 2003-04-25 | 2 | -11/+47 |
| | | | | | SF Patch 549151: urllib2 POSTs on redirect (contributed by John J Lee) | ||||
* | Add cross-references between urllib.urlencode() and cgi.parse_qs[l](). | Fred Drake | 2003-04-24 | 2 | -0/+6 |
| | | | | Closes SF bug #724751. | ||||
* | Include notice that the rotor module will be deprecated in Python 2.3. | Fred Drake | 2003-04-24 | 1 | -0/+2 |
| | |||||
* | Fix documentation errors in regards to urlretrieve() and local files. | Brett Cannon | 2003-04-24 | 1 | -11/+11 |
| | | | | Also fix typos in urllib lib doc. | ||||
* | backport note about password limitations | Skip Montanaro | 2003-04-23 | 1 | -0/+7 |
| | |||||
* | fsync(): Implemented for Windows, via calling MS _commit. This counts | Tim Peters | 2003-04-23 | 1 | -2/+9 |
| | | | | | | as "a bug" because there's no other way in core Python to ensure that bytes written are actually on disk. At least ZODB wants this guarantee, for robustness against crashes. | ||||
* | Added documentation for the handle_pi() method, based on SF patch #662464. | Fred Drake | 2003-04-17 | 1 | -1/+15 |
| | | | | Closes SF bug #659188, patch #662464. | ||||
* | Backport: | Neal Norwitz | 2003-04-11 | 1 | -1/+5 |
| | | | | | | | | | | | Fix SF bug #697220, string.strip implementation/doc mismatch Attempt to make all the various string/unicode *strip methods the same. * Doc - add doc for when functions were added * UserString * string/unicode object methods * string module functions 'chars' is used for the last parameter everywhere. | ||||
* | Added example of using positional and keyword args with atexit.register(). | Fred Drake | 2003-04-08 | 1 | -0/+15 |
| | | | | Based on a suggestion from a reader. | ||||
* | Backporting docs for email 2.5 | Barry Warsaw | 2003-03-21 | 6 | -13/+27 |
| | |||||
* | - added example of using a comparison function with list.sort(), and | Fred Drake | 2003-03-20 | 1 | -6/+35 |
| | | | | | | | explained the construction of a [(key, value), ...] list as an alternative - backport additional notes on list use from Python 2.3 documentation; mostly warnings about what not to rely on | ||||
* | - explain what a UNC path is in the makedirs() description, since | Fred Drake | 2003-03-20 | 1 | -2/+5 |
| | | | | they're actually mentioned there | ||||
* | SF bug #697220, string.strip implementation/doc mismatch | Neal Norwitz | 2003-03-04 | 1 | -0/+2 |
| | |||||
* | Backported fix to [521782] unreliable file.read() error handling. | Gustavo Niemeyer | 2003-03-04 | 1 | -1/+3 |
| | |||||
* | Typo | Raymond Hettinger | 2003-02-21 | 2 | -2/+2 |
| | |||||
* | Backport libtime.tex 1.53: | Raymond Hettinger | 2003-02-21 | 1 | -1/+1 |
| | | | | Fixed longstanding bug in the description of strftime's %W code. | ||||
* | Backport 1.7: Clarify when a read-only object is created. | Raymond Hettinger | 2003-02-21 | 1 | -0/+5 |
| | |||||
* | SF bug #685775: turtle circle() documentation error | Raymond Hettinger | 2003-02-21 | 1 | -4/+5 |
| | |||||
* | Fix SF bug #687655, String formatting conversions misleading | Neal Norwitz | 2003-02-17 | 1 | -1/+1 |
| | |||||
* | backporting Fred's doc fix. | Skip Montanaro | 2003-02-14 | 1 | -2/+3 |
| | |||||
* | add missing description of os.extsep | Skip Montanaro | 2003-02-14 | 1 | -0/+5 |
| | |||||
* | Fix SF bug #675259, os.environ leaks under FreeBSD and Mac OS X | Neal Norwitz | 2003-02-07 | 1 | -1/+7 |
| | | | | Even with the extra work to cleanup the env, *BSD still leaks. Add a note. | ||||
* | Update to better reflect the usage of struct_time instances throughout; | Fred Drake | 2003-02-04 | 1 | -24/+28 |
| | | | | | continuing to call these "time tuples" is misleading at best. Closes SF bug #671731; backported from rev 1.55. | ||||
* | backports: | Neal Norwitz | 2003-02-02 | 1 | -2/+95 |
| | | | | | | | | | | | | | | | | | | | | | | | | revision 1.127 date: 2003/01/04 02:16:22; author: rhettinger; state: Exp; lines: +1 -1 SF bug #655271: Slightly modify locals() doc Clarify the operation of locals(). revision 1.125 date: 2002/12/17 01:08:06; author: nnorwitz; state: Exp; lines: +6 -1 Fix SF # 641111, Undocumented side effect of eval 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. revision 1.124 date: 2002/12/17 01:02:57; author: nnorwitz; state: Exp; lines: +78 -0 Fix SF #642742, property() builtin not documented 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. | ||||
* | SF patch 664183 and SF bug 664044: Note that both u'%s' % 'x' and | Raymond Hettinger | 2003-01-13 | 1 | -1/+4 |
| | | | | '%s' % u'x' return a unicode object. | ||||
* | Backport last change: | Neal Norwitz | 2003-01-12 | 1 | -1/+2 |
| | | | | | | | SF #665570, curses causes interpreter crash The interpreter doesn't crash, but it does call exit() in libncurses. Add a note to this effect. |