Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Ignore directory time stamps when considering | Martin v. Löwis | 2007-02-14 | 1 | -1/+2 | |
| | | | | whether to rerun libffi configure. | |||||
* | Update 1432399 to removal of _BT_SOCKADDR_MEMB. | Martin v. Löwis | 2007-02-14 | 1 | -2/+1 | |
| | ||||||
* | Patch #1432399: Add HCI sockets. | Martin v. Löwis | 2007-02-14 | 3 | -0/+38 | |
| | ||||||
* | Strip the '.gz' extension from the filename that is written to the | Lars Gustäbel | 2007-02-13 | 1 | -3/+6 | |
| | | | | gzip header. | |||||
* | Patch #1647484: Renamed GzipFile's filename attribute to name. The | Lars Gustäbel | 2007-02-13 | 3 | -8/+22 | |
| | | | | | filename attribute is still accessible as a property that emits a DeprecationWarning. | |||||
* | Patch #1657276: Make NETLINK_DNRTMSG conditional. | Martin v. Löwis | 2007-02-13 | 2 | -0/+4 | |
| | | | | Will backport. | |||||
* | Bug #1658794: Remove extraneous 'this'. | Martin v. Löwis | 2007-02-13 | 1 | -1/+1 | |
| | | | | Will backport to 2.5. | |||||
* | Patch #1517891: Make 'a' create the file if it doesn't exist. | Martin v. Löwis | 2007-02-13 | 4 | -1/+38 | |
| | | | | Fixes #1514451. | |||||
* | Patch #698833: Support file decryption in zipfile. | Martin v. Löwis | 2007-02-13 | 4 | -6/+143 | |
| | ||||||
* | Patch #685268: Consider a package's __path__ in imputil. | Martin v. Löwis | 2007-02-13 | 2 | -0/+6 | |
| | | | | Will backport. | |||||
* | Fix the line to what is my guess at the original author's meaning. | Armin Rigo | 2007-02-12 | 1 | -1/+1 | |
| | | | | | (The line has no effect anyway, but is present because it's customary call the base class __init__). | |||||
* | Patch 1463026: Support default namespace in XMLGenerator. | Martin v. Löwis | 2007-02-12 | 3 | -17/+59 | |
| | | | | Fixes #847665. Will backport. | |||||
* | Bug #1656581: Point out that external file objects are supposed to be | Lars Gustäbel | 2007-02-12 | 1 | -2/+3 | |
| | | | | at position 0. | |||||
* | Modify Parser/asdl_c.py so that the __version__ number for Python/Python-ast.c | Brett Cannon | 2007-02-12 | 3 | -4/+30 | |
| | | | | | | is specified at the top of the file. Also add a note that Python/Python-ast.c needs to be committed separately after a change to the AST grammar to capture the revision number of the change (which is what __version__ is set to). | |||||
* | Check in changed Python-ast.c from a cosmetic change to Python.asdl (in | Brett Cannon | 2007-02-11 | 1 | -1/+1 | |
| | | | | r53731). | |||||
* | fix trace.py --ignore-dir | Skip Montanaro | 2007-02-11 | 2 | -1/+4 | |
| | ||||||
* | Change a very minor inconsistency (that is purely cosmetic) in the AST | Brett Cannon | 2007-02-11 | 1 | -1/+1 | |
| | | | | definition. | |||||
* | Bug #1656078: typo in in profile docs. | Georg Brandl | 2007-02-09 | 1 | -1/+1 | |
| | ||||||
* | Update broken link. Will backport to 2.5. | Martin v. Löwis | 2007-02-09 | 1 | -1/+1 | |
| | ||||||
* | Bug #1600860: Search for shared python library in LIBDIR, not | Martin v. Löwis | 2007-02-09 | 2 | -3/+15 | |
| | | | | | lib/python/config, on "linux" and "gnu" systems. Will backport. | |||||
* | Bug #1653736: Properly discard third argument to slot_nb_inplace_power. | Martin v. Löwis | 2007-02-09 | 2 | -1/+9 | |
| | | | | Will backport. | |||||
* | Corrected some bugs in AutoComplete. Also, Page Up/Down in ACW implemented; | Kurt B. Kaiser | 2007-02-08 | 3 | -21/+103 | |
| | | | | | | mouse and cursor selection in ACWindow implemented; double Tab inserts current selection and closes ACW (similar to double-click and Return); scroll wheel now works in ACW. Added AutoComplete instructions to IDLE Help. | |||||
* | Bug #1653736: Complain about keyword arguments to time.isoformat. | Martin v. Löwis | 2007-02-08 | 3 | -2/+9 | |
| | | | | Will backport to 2.5. | |||||
* | Fix docstring bug | Raymond Hettinger | 2007-02-08 | 1 | -1/+1 | |
| | ||||||
* | Bypass set specific optimizations for set and frozenset subclasses. | Raymond Hettinger | 2007-02-08 | 1 | -7/+7 | |
| | ||||||
* | Do not let overflows in enumerate() and count() pass silently. | Raymond Hettinger | 2007-02-08 | 3 | -2/+12 | |
| | ||||||
* | Silence compiler warning | Raymond Hettinger | 2007-02-07 | 1 | -1/+1 | |
| | ||||||
* | Bug #1575169: operator.isSequenceType() now returns False for subclasses of ↵ | Raymond Hettinger | 2007-02-07 | 2 | -0/+4 | |
| | | | | dict. | |||||
* | Check for a common user error with defaultdict(). | Raymond Hettinger | 2007-02-07 | 2 | -4/+11 | |
| | ||||||
* | SF: 1397711 Set docs conflated immutable and hashable | Raymond Hettinger | 2007-02-07 | 1 | -1/+1 | |
| | ||||||
* | SF #1615701: make d.update(m) honor __getitem__() and keys() in dict subclasses | Raymond Hettinger | 2007-02-07 | 2 | -1/+9 | |
| | ||||||
* | Handle AttributeError during calltip lookup | Kurt B. Kaiser | 2007-02-07 | 1 | -1/+1 | |
| | ||||||
* | [ 1621265 ] Auto-completion list placement | Kurt B. Kaiser | 2007-02-07 | 2 | -6/+18 | |
| | | | | | Move AC window below input line unless not enough space, then put it above. Patch: Tal Einat | |||||
* | narrow exception per [ 1540849 ] except too broad | Kurt B. Kaiser | 2007-02-06 | 1 | -1/+1 | |
| | ||||||
* | Updated patch (CodeContext.061217.patch) to | Kurt B. Kaiser | 2007-02-06 | 1 | -53/+19 | |
| | | | | | [ 1362975 ] CodeContext - Improved text indentation Tal Einat 16Dec06 | |||||
* | Patch #1652681: create nonexistent files in append mode and | Lars Gustäbel | 2007-02-06 | 4 | -3/+68 | |
| | | | | allow appending to empty files. | |||||
* | Applied patch 1124861.3.patch to solve bug #1124861: Automatically create ↵ | Peter Astrand | 2007-02-06 | 2 | -3/+28 | |
| | | | | pipes on Windows, if GetStdHandle fails. Will backport. | |||||
* | Clean up ModifiedInterpreter.runcode() structure | Kurt B. Kaiser | 2007-02-06 | 1 | -27/+29 | |
| | ||||||
* | 1. Calltips now 'handle' tuples in the argument list (display '<tuple>' :) | Kurt B. Kaiser | 2007-02-05 | 2 | -36/+48 | |
| | | | | | | Suggested solution by Christos Georgiou, Bug 791968. 2. Clean up tests, were not failing when they should have been. 4. Remove some camelcase and an unneeded try/except block. | |||||
* | Add 'raw' support to configHandler. Patch 1650174 Tal Einat. | Kurt B. Kaiser | 2007-02-05 | 2 | -12/+13 | |
| | ||||||
* | We had several if statements checking the value of a fd. This is unsafe, ↵ | Peter Astrand | 2007-02-02 | 1 | -15/+15 | |
| | | | | since valid fds might be zero. We should check for not None instead. | |||||
* | Bug #1648179: set.update() not recognizing __iter__ overrides in dict ↵ | Raymond Hettinger | 2007-02-01 | 1 | -4/+4 | |
| | | | | subclasses. | |||||
* | No more raising of string exceptions! | Brett Cannon | 2007-01-30 | 5 | -56/+76 | |
| | | | | | | | The next step of PEP 352 (for 2.6) causes raising a string exception to trigger a TypeError. Trying to catch a string exception raises a DeprecationWarning. References to string exceptions has been removed from the docs since they are now just an error. | |||||
* | Bug #1648191: typo in docs. | Georg Brandl | 2007-01-30 | 1 | -1/+1 | |
| | ||||||
* | Whitespace normalization. | Tim Peters | 2007-01-30 | 21 | -131/+131 | |
| | ||||||
* | More edits | Andrew M. Kuchling | 2007-01-29 | 1 | -27/+27 | |
| | ||||||
* | Various minor edits | Andrew M. Kuchling | 2007-01-29 | 3 | -60/+74 | |
| | ||||||
* | Minor edits to the curses HOWTO | Andrew M. Kuchling | 2007-01-29 | 2 | -28/+29 | |
| | ||||||
* | Add a test for slicing an exception. | Brett Cannon | 2007-01-29 | 2 | -0/+9 | |
| | ||||||
* | Use the thread lock's context manager instead of a try/finally statement. | Brett Cannon | 2007-01-28 | 1 | -4/+1 | |
| |