Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Refactor PEP 352 tests to make it easier in the future to make sure certain | Brett Cannon | 2007-02-23 | 1 | -18/+34 |
| | | | | things cannot be raised or caught. | ||||
* | Fix typo in comment | Neal Norwitz | 2007-02-23 | 1 | -1/+1 |
| | |||||
* | Add itertools.izip_longest(). | Raymond Hettinger | 2007-02-21 | 1 | -0/+54 |
| | |||||
* | Fixup docstrings for merge(). | Raymond Hettinger | 2007-02-19 | 1 | -2/+2 |
| | |||||
* | Patch #1490190: posixmodule now includes os.chflags() and os.lchflags() | Martin v. Löwis | 2007-02-19 | 3 | -1/+28 |
| | | | | functions on platforms where the underlying system calls are available. | ||||
* | Add test for merge stability | Raymond Hettinger | 2007-02-19 | 1 | -0/+15 |
| | |||||
* | Use C heapreplace() instead of slower _siftup() in pure python. | Raymond Hettinger | 2007-02-19 | 1 | -2/+2 |
| | |||||
* | Add tie-breaker count to preserve sort stability. | Raymond Hettinger | 2007-02-19 | 1 | -6/+6 |
| | |||||
* | Add merge() function to heapq. | Raymond Hettinger | 2007-02-19 | 2 | -3/+49 |
| | |||||
* | Extend work on revision 52962: Eliminate redundant calls to PyObject_Hash(). | Raymond Hettinger | 2007-02-19 | 1 | -0/+20 |
| | |||||
* | Minor fix for currentframe (SF #1652788). | Vinay Sajip | 2007-02-16 | 1 | -5/+5 |
| | |||||
* | Make the __import__ call in encodings.__init__ absolute with a level 0 call. | Brett Cannon | 2007-02-16 | 1 | -4/+4 |
| | |||||
* | Update the encoding package's search function to use absolute imports when | Brett Cannon | 2007-02-15 | 1 | -2/+4 |
| | | | | | | | | | | | | calling __import__. This helps make the expected search locations for encoding modules be more explicit. One could use an explicit value for __path__ when making the call to __import__ to force the exact location searched for encodings. This would give the most strict search path possible if one is worried about malicious code being imported. The unfortunate side-effect of that is that if __path__ was modified on 'encodings' on purpose in a safe way it would not be picked up in future __import__ calls. | ||||
* | A missing binary mode in AppendTest caused failures in Windows | Lars Gustäbel | 2007-02-14 | 1 | -2/+2 |
| | | | | Buildbot. | ||||
* | 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 | 2 | -8/+20 |
| | | | | | filename attribute is still accessible as a property that emits a DeprecationWarning. | ||||
* | Patch #1517891: Make 'a' create the file if it doesn't exist. | Martin v. Löwis | 2007-02-13 | 2 | -1/+30 |
| | | | | Fixes #1514451. | ||||
* | Patch #698833: Support file decryption in zipfile. | Martin v. Löwis | 2007-02-13 | 2 | -2/+126 |
| | |||||
* | Patch #685268: Consider a package's __path__ in imputil. | Martin v. Löwis | 2007-02-13 | 1 | -0/+4 |
| | | | | 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 | 2 | -17/+57 |
| | | | | Fixes #847665. Will backport. | ||||
* | fix trace.py --ignore-dir | Skip Montanaro | 2007-02-11 | 1 | -1/+1 |
| | |||||
* | Bug #1600860: Search for shared python library in LIBDIR, not | Martin v. Löwis | 2007-02-09 | 1 | -3/+12 |
| | | | | | lib/python/config, on "linux" and "gnu" systems. 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 | 1 | -0/+5 |
| | | | | Will backport to 2.5. | ||||
* | Fix docstring bug | Raymond Hettinger | 2007-02-08 | 1 | -1/+1 |
| | |||||
* | Do not let overflows in enumerate() and count() pass silently. | Raymond Hettinger | 2007-02-08 | 1 | -2/+1 |
| | |||||
* | Bug #1575169: operator.isSequenceType() now returns False for subclasses of ↵ | Raymond Hettinger | 2007-02-07 | 1 | -0/+2 |
| | | | | dict. | ||||
* | Check for a common user error with defaultdict(). | Raymond Hettinger | 2007-02-07 | 1 | -3/+4 |
| | |||||
* | SF #1615701: make d.update(m) honor __getitem__() and keys() in dict subclasses | Raymond Hettinger | 2007-02-07 | 1 | -0/+8 |
| | |||||
* | 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 | 2 | -2/+63 |
| | | | | allow appending to empty files. | ||||
* | Applied patch 1124861.3.patch to solve bug #1124861: Automatically create ↵ | Peter Astrand | 2007-02-06 | 1 | -3/+25 |
| | | | | 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. | ||||
* | No more raising of string exceptions! | Brett Cannon | 2007-01-30 | 1 | -23/+39 |
| | | | | | | | 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. | ||||
* | Whitespace normalization. | Tim Peters | 2007-01-30 | 21 | -131/+131 |
| | |||||
* | Add a test for slicing an exception. | Brett Cannon | 2007-01-29 | 1 | -0/+7 |
| | |||||
* | Use the thread lock's context manager instead of a try/finally statement. | Brett Cannon | 2007-01-28 | 1 | -4/+1 |
| | |||||
* | Patch #1634778: add missing encoding aliases for iso8859_15 and | Georg Brandl | 2007-01-27 | 2 | -0/+7 |
| | | | | iso8859_16. | ||||
* | Patch #1638243: the compiler package is now able to correctly compile | Georg Brandl | 2007-01-27 | 3 | -1/+34 |
| | | | | | a with statement; previously, executing code containing a with statement compiled by the compiler package crashed the interpreter. | ||||
* | Remove specific mention of my name and email address from modules. Not really | Brett Cannon | 2007-01-25 | 3 | -13/+2 |
| | | | | | needed and all bug reports should go to the bug tracker, not directly to me. Plus I am not the only person to have edited these files at this point. | ||||
* | Fix time.strptime's %U support. Basically rewrote the algorithm to be more | Brett Cannon | 2007-01-25 | 2 | -31/+34 |
| | | | | | | | | | generic so that one only has to shift certain values based on whether the week was specified to start on Monday or Sunday. Cut out a lot of edge case code compared to the previous version. Also broke algorithm out into its own function (that is private to the module). Fixes bug #1643943 (thanks Biran Nahas for the report). | ||||
* | Port test_popen.py to unittest. | Walter Dörwald | 2007-01-24 | 2 | -25/+29 |
| | |||||
* | Fix crasher for when an object's __del__ creates a new weakref to itself. | Brett Cannon | 2007-01-23 | 2 | -1/+16 |
| | | | | | | Patch only fixes new-style classes; classic classes still buggy. Closes bug #1377858. Already backported. |