| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Doc/lib/libfuncs.tex: correct items in itemize | Matthias Klose | 2004-08-04 | 1 | -8/+8 |
| | | | | | Doc/dist/dist.tex: avoid uncommenting the verbose environment (by the py2texi tool) | ||||
| * | Updated Logger.log() documentation to clarify that lvl parameter should be ↵ | Vinay Sajip | 2004-08-04 | 1 | -1/+1 |
| | | | | | an integer. | ||||
| * | SF #989185: Drop unicode.iswide() and unicode.width() and add | Hye-Shik Chang | 2004-08-04 | 2 | -12/+6 |
| | | | | | | | | | | | | | unicodedata.east_asian_width(). You can still implement your own simple width() function using it like this: def width(u): w = 0 for c in unicodedata.normalize('NFC', u): cwidth = unicodedata.east_asian_width(c) if cwidth in ('W', 'F'): w += 2 else: w += 1 return w | ||||
| * | allow ctime(), gmtime(), and localtime() to take None as equivalent to an ↵ | Fred Drake | 2004-08-03 | 1 | -8/+17 |
| | | | | | | | omitted arg (closes SF bug #658254, patch #663482) | ||||
| * | Patch #823072: add option to NOT use ~/.netrc in nntplib.NNTP(). | Martin v. Löwis | 2004-08-03 | 1 | -2/+7 |
| | | |||||
| * | Document general mappings for the locals argument for exec and execfile(). | Raymond Hettinger | 2004-08-03 | 1 | -7/+8 |
| | | |||||
| * | PEP-0318, @decorator-style. In Guido's words: | Anthony Baxter | 2004-08-02 | 2 | -3/+16 |
| | | | | | | "@ seems the syntax that everybody can hate equally" Implementation by Mark Russell, from SF #979728. | ||||
| * | re-wrap paragraphs containing long lines | Fred Drake | 2004-07-30 | 1 | -43/+56 |
| | | |||||
| * | - document the termination condition for cmd.Cmd.cmdloop() | Fred Drake | 2004-07-30 | 1 | -1/+8 |
| | | | | | - document the use of the return value for cmd.Cmd.do_*() methods | ||||
| * | Fix typo. | Martin v. Löwis | 2004-07-30 | 1 | -1/+1 |
| | | |||||
| * | Add closing methoddesc. Add versionadded. Rewrap. | Martin v. Löwis | 2004-07-30 | 1 | -2/+6 |
| | | |||||
| * | SF bug #997533: "disjunct" should be "disjoint" | Raymond Hettinger | 2004-07-29 | 1 | -3/+3 |
| | | | | | | * Use plain wording in docs for id(). * Use normal quotation marks instead of single quotes in the description. | ||||
| * | SF #998170, fix typo. Backport candidate | Neal Norwitz | 2004-07-29 | 1 | -1/+1 |
| | | |||||
| * | Add versionadded info | Neal Norwitz | 2004-07-28 | 1 | -0/+2 |
| | | |||||
| * | Patch #998149: imaplib deleteacl and myrights. | Martin v. Löwis | 2004-07-27 | 1 | -0/+8 |
| | | |||||
| * | fix information about what flag database files are opened with by default | Fred Drake | 2004-07-26 | 1 | -6/+6 |
| | | |||||
| * | Patch #605370: Add description[s] for RFC 2980 compliance. | Martin v. Löwis | 2004-07-26 | 1 | -0/+20 |
| | | |||||
| * | Patch #997668: Correct explanation of salts. | Martin v. Löwis | 2004-07-26 | 1 | -1/+9 |
| | | | | | Will backport to 2.3. | ||||
| * | Explain that most floats are actually integers. This is a common confusion | Tim Peters | 2004-07-26 | 1 | -0/+8 |
| | | | | | for people using floor(), ceil() and modf(). | ||||
| * | Typo in new docs. | Tim Peters | 2004-07-26 | 1 | -1/+1 |
| | | |||||
| * | SF bugs 996748: os.environ documentation should indicate unreliability | Tim Peters | 2004-07-26 | 1 | -3/+12 |
| | | | | | | | Clarifed that os.environ is captured once; emphasized that it's better to assign to os.environ than to call putenv() directly (the putenv() docs said so, but the environ docs didn't). | ||||
| * | SF bug 996392: math and cmath docs don't specify radians | Tim Peters | 2004-07-24 | 1 | -64/+99 |
| | | | | | | | | Major rewrite of the math module docs. Slapped in "radians" where appropriate; grouped the functions into reasonable categories; supplied many more words to address common confusions about some of the subtler issues. | ||||
| * | A few trivial edits. | Tim Peters | 2004-07-23 | 1 | -4/+4 |
| | | |||||
| * | SF bug #995983 and #995987: Documentation nits. | Raymond Hettinger | 2004-07-22 | 1 | -5/+7 |
| | | |||||
| * | This change implements the following gettext features, as | Gustavo Niemeyer | 2004-07-22 | 2 | -17/+126 |
| | | | | | | | | | | | | | | | | | | | | | discussed recently in python-dev: In _locale module: - bind_textdomain_codeset() binding In gettext module: - bind_textdomain_codeset() function - lgettext(), lngettext(), ldgettext(), ldngettext(), which return translated strings encoded in preferred system encoding, if bind_textdomain_codeset() was not used. - Added equivalent functionality in translate() function and catalog classes. Every change was also documented. | ||||
| * | Added an extra example to the basic example section | Vinay Sajip | 2004-07-21 | 1 | -0/+21 |
| | | |||||
| * | fix typo, highlight True/False correctly | Skip Montanaro | 2004-07-21 | 1 | -4/+4 |
| | | |||||
| * | SF #994605, fcntl example is broken | Neal Norwitz | 2004-07-21 | 1 | -3/+3 |
| | | | | | | | | The last call to fcntl (which wasn't changed) doesn't work for me, but the first part works now. Backport candidate. | ||||
| * | SF #918101, allow files >= 8 GB using GNU extension | Neal Norwitz | 2004-07-20 | 1 | -5/+6 |
| | | |||||
| * | Patch #993187: Make rstrip doc similar to lstrip. | Martin v. Löwis | 2004-07-19 | 1 | -1/+1 |
| | | | | | Backported to 2.3. | ||||
| * | Get doc to build (add missing backslash) | Neal Norwitz | 2004-07-19 | 1 | -1/+1 |
| | | |||||
| * | Whitespace normalization, via reindent.py. | Tim Peters | 2004-07-18 | 4 | -9/+7 |
| | | |||||
| * | Bring CJKCodecs 1.1 into trunk. This completely reorganizes source | Hye-Shik Chang | 2004-07-18 | 1 | -1/+17 |
| | | | | | | | and installed layouts to make maintenance simple and easy. And it also adds four new codecs; big5hkscs, euc-jis-2004, shift-jis-2004 and iso2022-jp-2004. | ||||
| * | Change CJK encoding aliases to their most popular variation of | Hye-Shik Chang | 2004-07-17 | 1 | -14/+14 |
| | | | | | | hyphen and underscores in consistency of non-CJK aliases. (Spotted by Mike Brown at SF #969415) | ||||
| * | Minor edits | Andrew M. Kuchling | 2004-07-17 | 1 | -4/+4 |
| | | |||||
| * | SF bug 990749: os constants missing | Tim Peters | 2004-07-15 | 1 | -7/+10 |
| | | | | | | | | A LaTeX comment identified the 6 os.O_XXX constants the docs claimed are available on Windows but aren't. The bug report listed the same 6. Split these non-Windows constants into a different table with a possibly correct "Availability:" claim. | ||||
| * | Improve examples for working with the context API. | Raymond Hettinger | 2004-07-14 | 1 | -6/+6 |
| | | |||||
| * | Implemented thread-local data as proposed on python-dev: | Jim Fulton | 2004-07-14 | 1 | -0/+19 |
| | | | | | http://mail.python.org/pipermail/python-dev/2004-June/045785.html | ||||
| * | - Bug #981530: Fix UnboundLocalError in shutil.rmtree(). This affects | Guido van Rossum | 2004-07-14 | 1 | -1/+1 |
| | | | | | | | | | the documented behavior: the function passed to the onerror() handler can now also be os.listdir. [I could've sworn I checked this in, but apparently I didn't, or it got lost???] | ||||
| * | Wordsmithing | Andrew M. Kuchling | 2004-07-13 | 1 | -15/+15 |
| | | |||||
| * | Add another point in the "Restrictions" section about how the handling of FTP | Brett Cannon | 2004-07-13 | 1 | -0/+17 |
| | | | | | | | | URLs will seemingly succeed to read a URL that points to a file whose permissions you do not have to read. Backport candidate once everyone agrees with the wording. | ||||
| * | Fixed minor bugs in the example configuration file | Vinay Sajip | 2004-07-12 | 1 | -4/+4 |
| | | |||||
| * | Small elaboration and typo fixes. | Raymond Hettinger | 2004-07-12 | 1 | -5/+19 |
| | | |||||
| * | Bug #788520: Queue class has logic error when non-blocking | Tim Peters | 2004-07-12 | 1 | -3/+3 |
| | | | | | | | | | | | | | | | | | | | | | I don't agree it had a bug (see the report), so this is *not* a candidate for backporting, but the docs were confusing and the Queue implementation was old enough to vote. Rewrote put/put_nowait/get/get_nowait from scratch, to use a pair of Conditions (not_full and not_empty), sharing a common mutex. The code is 1/4 the size now, and 6.25x easier to understand. For blocking with timeout, we also get to reuse (indirectly) the tedious timeout code from threading.Condition. The Full and Empty exceptions raised by non-blocking calls are now easy (instead of nearly impossible) to explain truthfully: Full is raised if and only if the Queue truly is full when the non-blocking put call checks the queue size, and similarly for Empty versus non-blocking get. What I don't know is whether the new implementation is slower (or faster) than the old one. I don't really care. Anyone who cares a lot is encouraged to check that. | ||||
| * | Added documentation for the "smtpd" module. | Fred Drake | 2004-07-11 | 2 | -0/+64 |
| | | | | | Closes SF bug #450803. | ||||
| * | Style nit. | Raymond Hettinger | 2004-07-11 | 1 | -2/+2 |
| | | |||||
| * | Minor improvements, fixups and wording changes everywhere. | Raymond Hettinger | 2004-07-11 | 1 | -163/+169 |
| | | |||||
| * | Patch 851752 (fixes bug 820583) | Kurt B. Kaiser | 2004-07-11 | 1 | -3/+10 |
| | | | | | | | | | | | | | Patch by John J Lee Reviewed by Jeff Epler / KBK Doc built OK. urlopen() may return None if no handler handles the request. Also clarify what install_opener does. M liburllib2.tex | ||||
| * | Fix minor error in example. | Brett Cannon | 2004-07-10 | 1 | -1/+1 |
| | | |||||
| * | Clarify docs for inspect.getargspec() that the fourth value is None when there | Brett Cannon | 2004-07-10 | 1 | -3/+3 |
| | | | | | are no default arguments for the function. | ||||
