Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | avoid ugly markup based on the unfortunate conversions of ">>" and "<<" to | Fred Drake | 2006-05-03 | 14 | -23/+23 |
| | | | | guillemets; no need for magic here | ||||
* | tell LaTeX2HTML to: | Fred Drake | 2006-05-03 | 1 | -1/+15 |
| | | | | | - use UTF-8 output - not mess with the >>> prompt! | ||||
* | remove unnecessary assignment | Fred Drake | 2006-05-03 | 1 | -1/+0 |
| | |||||
* | Update context manager section for removal of __context__ | Andrew M. Kuchling | 2006-05-02 | 1 | -54/+16 |
| | |||||
* | Use open() instead of file() | Andrew M. Kuchling | 2006-05-02 | 2 | -23/+23 |
| | |||||
* | Hopefully this will fix the spurious failures of test_mailbox.py that I'm | Guido van Rossum | 2006-05-02 | 1 | -4/+8 |
| | | | | | experiencing. (This code and mailbox.py itself are full of calls to file() that should be calls to open() -- but I'm not fixing those.) | ||||
* | Documentation bug: PySet_Pop() returns a new reference (because the | Armin Rigo | 2006-05-02 | 1 | -1/+1 |
| | | | | caller becomes the owner of that reference). | ||||
* | Get rid of __context__, per the latest changes to PEP 343 and python-dev | Guido van Rossum | 2006-05-02 | 15 | -202/+27 |
| | | | | | | | | discussion. There are two places of documentation that still mention __context__: Doc/lib/libstdtypes.tex -- I wasn't quite sure how to rewrite that without spending a whole lot of time thinking about it; and whatsnew, which Andrew usually likes to change himself. | ||||
* | Fix the formatting of KeyboardInterrupt -- a bad issubclass() call. | Guido van Rossum | 2006-05-02 | 2 | -1/+7 |
| | |||||
* | Provide encoding as keyword argument; soften warning paragraph about encodings | Andrew M. Kuchling | 2006-05-02 | 1 | -6/+7 |
| | |||||
* | Replaced my dumb way of calculating seconds to midnight with Tim Peters' ↵ | Vinay Sajip | 2006-05-02 | 1 | -6/+4 |
| | | | | much more sensible suggestion. What was I thinking ?!? | ||||
* | Fix breakage from patch 1471883 (r45800 & r45808) on OSF/1. | Neal Norwitz | 2006-05-02 | 3 | -8/+8 |
| | | | | | | The problem was that pyconfig.h was being included before some system headers which caused redefinitions and other breakage. This moves system headers after expat_config.h which includes pyconfig.h. | ||||
* | SF #1479988: add methods to allow access to weakrefs for the | Fred Drake | 2006-05-02 | 3 | -0/+125 |
| | | | | weakref.WeakKeyDictionary and weakref.WeakValueDictionary | ||||
* | Try to fix breakage caused by patch #1479181, r45850 | Neal Norwitz | 2006-05-02 | 2 | -4/+4 |
| | |||||
* | SF #1479181: split open() and file() from being aliases for each other. | Neal Norwitz | 2006-05-02 | 5 | -17/+23 |
| | |||||
* | Markup fixes | Andrew M. Kuchling | 2006-05-01 | 1 | -12/+12 |
| | |||||
* | Add item | Andrew M. Kuchling | 2006-05-01 | 1 | -0/+5 |
| | |||||
* | Markup fixes; add some XXX comments noting problems | Andrew M. Kuchling | 2006-05-01 | 1 | -27/+29 |
| | |||||
* | add dependency | Fred Drake | 2006-05-01 | 1 | -0/+1 |
| | |||||
* | Rename parameters to match the documentation (which | Martin v. Löwis | 2006-05-01 | 2 | -16/+15 |
| | | | | | in turn matches Microsoft's documentation). Drop unused parameter in CAB.append. | ||||
* | Add msilib documentation. | Martin v. Löwis | 2006-05-01 | 2 | -0/+486 |
| | |||||
* | Rename uisample to text, drop all non-text tables. | Martin v. Löwis | 2006-05-01 | 2 | -1399/+129 |
| | |||||
* | Further integration of the documentation for the sqlite3 module. There's still | Gerhard Häring | 2006-05-01 | 30 | -3/+654 |
| | | | | quite some content to move over from the pysqlite manual, but it's a start now. | ||||
* | Some ElementTree fixes: import from xml, not xmlcore; fix case of module ↵ | Andrew M. Kuchling | 2006-05-01 | 1 | -6/+6 |
| | | | | name; mention list() instead of getchildren() | ||||
* | Work around deadlock risk. Will backport. | Martin v. Löwis | 2006-05-01 | 2 | -3/+18 |
| | |||||
* | - minor clarification in section title | Fred Drake | 2006-05-01 | 1 | -15/+9 |
| | | | | | - markup adjustments (there is clearly much to be done in this section) | ||||
* | Port forward from 2.4 branch: | Barry Warsaw | 2006-05-01 | 5 | -0/+24 |
| | | | | | | | | | | Patch #1464708 from William McVey: fixed handling of nested comments in mail addresses. E.g. "Foo ((Foo Bar)) <foo@example.com>" Fixes for both rfc822.py and email package. This patch needs to be back ported to Python 2.3 for email 2.5. | ||||
* | Add item | Andrew M. Kuchling | 2006-04-30 | 1 | -0/+6 |
| | |||||
* | Add urllib2 HOWTO from Michael Foord | Andrew M. Kuchling | 2006-04-30 | 1 | -0/+410 |
| | |||||
* | Patch #1479438: add \keyword markup for "with". | Georg Brandl | 2006-04-30 | 2 | -5/+5 |
| | |||||
* | Patch #1472854: make the rlcompleter.Completer class usable on non- | Georg Brandl | 2006-04-30 | 4 | -14/+19 |
| | | | | UNIX platforms. | ||||
* | Fix another problem in inspect: if the module for an object cannot be found, ↵ | Georg Brandl | 2006-04-30 | 1 | -1/+5 |
| | | | | don't try to give its __dict__ to linecache. | ||||
* | Fix infinite regress when inspecting <string> or <stdin> frames. | Phillip J. Eby | 2006-04-30 | 1 | -1/+7 |
| | |||||
* | Bug #1473625: stop cPickle making float dumps locale dependent in protocol 0. | Georg Brandl | 2006-04-30 | 6 | -53/+67 |
| | | | | | On the way, add a decorator to test_support to facilitate running single test functions in different locales with automatic cleanup. | ||||
* | Patch #1470976: don't NLST files when retrieving over FTP. | Georg Brandl | 2006-04-30 | 1 | -7/+0 |
| | |||||
* | In stdlib, use hashlib instead of deprecated md5 and sha modules. | Georg Brandl | 2006-04-30 | 6 | -17/+16 |
| | |||||
* | Patch #1470846: fix urllib2 ProxyBasicAuthHandler. | Georg Brandl | 2006-04-30 | 5 | -50/+257 |
| | |||||
* | Use \versionchanged instead of \versionadded for new parameter support. | George Yoshida | 2006-04-30 | 1 | -1/+1 |
| | |||||
* | Add two items | Andrew M. Kuchling | 2006-04-30 | 1 | -0/+17 |
| | |||||
* | This is the start of documentation for the sqlite3 module. Please feel free to | Gerhard Häring | 2006-04-29 | 3 | -1/+108 |
| | | | | find a better place for the link to it than alongside bsddb & friends. | ||||
* | Fix docstring for contextfactory; mentioned old contextmanager name. | Brett Cannon | 2006-04-29 | 1 | -1/+1 |
| | |||||
* | Further changes for #1471883: Edit Misc/NEWS, and | Martin v. Löwis | 2006-04-29 | 2 | -0/+21 |
| | | | | add expat_config.h. | ||||
* | Add item | Andrew M. Kuchling | 2006-04-29 | 1 | -1/+5 |
| | |||||
* | Make case of 'ZIP' consistent | Andrew M. Kuchling | 2006-04-29 | 1 | -1/+1 |
| | |||||
* | Add item | Andrew M. Kuchling | 2006-04-29 | 1 | -0/+5 |
| | |||||
* | Patch 1471883: --enable-universalsdk on Mac OS X | Ronald Oussoren | 2006-04-29 | 7 | -25/+169 |
| | |||||
* | grammar fix | George Yoshida | 2006-04-29 | 1 | -1/+1 |
| | |||||
* | Bug #1478429: make datetime.datetime.fromtimestamp accept every float, | Georg Brandl | 2006-04-28 | 2 | -0/+13 |
| | | | | possibly "rounding up" to the next whole second. | ||||
* | Remove a duplicated test (the same test is in test_incomplete.py). | Thomas Heller | 2006-04-28 | 1 | -21/+0 |
| | |||||
* | Bug #1478326: don't allow '/' in distutils.util.get_platform machine names | Georg Brandl | 2006-04-28 | 1 | -0/+1 |
| | | | | since this value is used to name the build directory. |