Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | only check the actual compile() call for a SyntaxError | Benjamin Peterson | 2009-01-04 | 1 | -5/+5 |
| | |||||
* | fixed #1702551: distutils sdist was not pruning VCS directories under win32 | Tarek Ziadé | 2009-01-04 | 3 | -1/+120 |
| | |||||
* | Add temporary code to fix the automatic doc build failure. | Georg Brandl | 2009-01-03 | 1 | -0/+4 |
| | |||||
* | Manually merge r67868 from 2.6 branch. | Georg Brandl | 2009-01-03 | 1 | -7/+5 |
| | |||||
* | Manually merge r68095,68186,68187,68188,68190 from 2.6 branch. | Georg Brandl | 2009-01-03 | 5 | -8/+25 |
| | |||||
* | Grammar fix. | Georg Brandl | 2009-01-03 | 1 | -4/+3 |
| | |||||
* | The _tkinter module functions "createfilehandler", "deletefilehandler", | Guilherme Polo | 2009-01-03 | 2 | -0/+40 |
| | | | | | "createtimerhandler", "mainloop", "dooneevent" and "quit" have been deprecated for removal in 3.x (part of issue #3638). | ||||
* | Disable the line length checker by default. | Georg Brandl | 2009-01-03 | 2 | -3/+8 |
| | |||||
* | Remove tabs from the documentation. | Georg Brandl | 2009-01-03 | 20 | -166/+163 |
| | |||||
* | Remove trailing whitespace. | Georg Brandl | 2009-01-03 | 149 | -771/+771 |
| | |||||
* | Fix uses of the default role. | Georg Brandl | 2009-01-03 | 11 | -79/+77 |
| | |||||
* | Recognize usage of the default role. | Georg Brandl | 2009-01-03 | 1 | -2/+10 |
| | |||||
* | Add rstlint, a little tool to find subtle markup problems and ↵ | Georg Brandl | 2009-01-03 | 2 | -1/+220 |
| | | | | inconsistencies in the Doc sources. | ||||
* | Fix role name. | Georg Brandl | 2009-01-03 | 1 | -1/+1 |
| | |||||
* | Make indentation consistent. | Georg Brandl | 2009-01-03 | 1 | -9/+9 |
| | |||||
* | Set eol-style correctly for mp_distributing.py. | Georg Brandl | 2009-01-03 | 1 | -364/+364 |
| | |||||
* | Reapply r68191. | Raymond Hettinger | 2009-01-03 | 1 | -56/+56 |
| | |||||
* | Issue 4796: Add from_float methods to the decimal module. | Raymond Hettinger | 2009-01-03 | 4 | -58/+201 |
| | |||||
* | Issue #4817: Remove unused function PyOS_GetLastModificationTime. | Martin v. Löwis | 2009-01-03 | 17 | -84/+2 |
| | |||||
* | Merged revisions 67900-67901,67919,67928,67984,67991-67993,68106-68108,68110 ↵ | Benjamin Peterson | 2009-01-03 | 9 | -58/+198 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | via svnmerge from svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r67900 | benjamin.peterson | 2008-12-22 14:02:45 -0600 (Mon, 22 Dec 2008) | 4 lines fix_execfile: wrap the open(fn).read() call in compile(), so the filename is preserved also add unittests for the fixer ........ r67901 | benjamin.peterson | 2008-12-22 14:09:55 -0600 (Mon, 22 Dec 2008) | 1 line remove unused import ........ r67919 | benjamin.peterson | 2008-12-23 13:12:22 -0600 (Tue, 23 Dec 2008) | 1 line copy permission bits from the backup to the original ........ r67928 | benjamin.peterson | 2008-12-26 20:49:30 -0600 (Fri, 26 Dec 2008) | 1 line don't be so idiot about multiple local imports in fix_import; still won't handle absolute and local imports on the same line ........ r67984 | benjamin.peterson | 2008-12-28 09:55:16 -0600 (Sun, 28 Dec 2008) | 1 line don't need loop ........ r67991 | benjamin.peterson | 2008-12-28 14:30:26 -0600 (Sun, 28 Dec 2008) | 1 line actually call finish_tree() ........ r67992 | benjamin.peterson | 2008-12-28 14:34:47 -0600 (Sun, 28 Dec 2008) | 1 line remove useless test ........ r67993 | benjamin.peterson | 2008-12-28 15:04:32 -0600 (Sun, 28 Dec 2008) | 1 line update pyk3's test grammar ........ r68106 | benjamin.peterson | 2008-12-31 11:53:58 -0600 (Wed, 31 Dec 2008) | 1 line #2734 don't convert every instance of long (eg if it's an attribute) ........ r68107 | benjamin.peterson | 2008-12-31 11:55:10 -0600 (Wed, 31 Dec 2008) | 1 line add another test ........ r68108 | benjamin.peterson | 2008-12-31 12:00:12 -0600 (Wed, 31 Dec 2008) | 1 line don't change long even if it's the only argument name ........ r68110 | benjamin.peterson | 2008-12-31 14:13:26 -0600 (Wed, 31 Dec 2008) | 1 line remove unused import ........ | ||||
* | Fix indentation. | Georg Brandl | 2009-01-03 | 1 | -6/+6 |
| | |||||
* | Remove useless string literal. | Georg Brandl | 2009-01-03 | 1 | -1/+1 |
| | |||||
* | Issue #4812: further renaming of internal Decimal constants, for clarity. | Mark Dickinson | 2009-01-03 | 1 | -56/+56 |
| | |||||
* | Issue #4812: add missing underscore prefix to some internal-use-only | Mark Dickinson | 2009-01-02 | 2 | -63/+66 |
| | | | | constants in the decimal module. (Dec_0 becomes _Dec_0, etc.) | ||||
* | Issue #4615. Document how to use itertools for de-duping. | Raymond Hettinger | 2009-01-02 | 2 | -0/+60 |
| | |||||
* | Add various items | Andrew M. Kuchling | 2009-01-02 | 1 | -2/+27 |
| | |||||
* | fix compilation on non-Windows platforms | Benjamin Peterson | 2009-01-02 | 1 | -0/+2 |
| | |||||
* | Issue #4051: Prevent conflict of UNICODE macros in cPickle. | Martin v. Löwis | 2009-01-02 | 2 | -0/+10 |
| | |||||
* | Issue #4075: Use OutputDebugStringW in Py_FatalError. | Martin v. Löwis | 2009-01-02 | 2 | -3/+19 |
| | |||||
* | #4811: fix markup glitches (mostly remains of the conversion), | Georg Brandl | 2009-01-02 | 19 | -39/+42 |
| | | | | found by Gabriel Genellina. | ||||
* | Minor documentation changes relating to NullHandler, the module used for ↵ | Vinay Sajip | 2009-01-02 | 1 | -19/+38 |
| | | | | handlers and references to ConfigParser. | ||||
* | document PyMemberDef | Benjamin Peterson | 2009-01-02 | 1 | -0/+63 |
| | |||||
* | Fix for issues #841800 and #900506 | Ronald Oussoren | 2009-01-02 | 2 | -15/+32 |
| | |||||
* | Fix for issue 4472 is incompatible with Cygwin, this patch | Ronald Oussoren | 2009-01-02 | 1 | -2/+2 |
| | | | | should fix that. | ||||
* | Fix for issue 1149804 | Ronald Oussoren | 2009-01-02 | 2 | -1/+11 |
| | |||||
* | Fix for issue r1737832 | Ronald Oussoren | 2009-01-02 | 2 | -5/+11 |
| | |||||
* | Fix for issue 1627952 | Ronald Oussoren | 2009-01-02 | 2 | -1/+3 |
| | |||||
* | Fix for issue 900949 | Ronald Oussoren | 2009-01-02 | 2 | -11/+12 |
| | |||||
* | Fix for issue1594 | Ronald Oussoren | 2009-01-02 | 3 | -0/+67 |
| | |||||
* | Fix for issue3559: No preferences menu in IDLE on OSX | Ronald Oussoren | 2009-01-02 | 3 | -2/+9 |
| | | | | | | | | | | 1) Add a comment to the help file to that points to the preferences menu. 2) An earlier checkin tried to detect Tk >= 8.10.14, but did this in the wrong way. The end result of this was that the IDLE->Preferences... menu got surpressed when using the system version of Tcl/Tk | ||||
* | Fix for issue 3433 | Ronald Oussoren | 2009-01-02 | 2 | -4/+4 |
| | |||||
* | Fix for issue4780 | Ronald Oussoren | 2009-01-02 | 1 | -1/+1 |
| | |||||
* | Forgot to add a NEWS item in my previous checkin | Ronald Oussoren | 2009-01-02 | 1 | -0/+2 |
| | |||||
* | Fix for issue4472: "configure --enable-shared doesn't work on OSX" | Ronald Oussoren | 2009-01-02 | 3 | -8/+26 |
| | |||||
* | #4801 _collections module fails to build on cygwin. | Amaury Forgeot d'Arc | 2009-01-02 | 1 | -2/+2 |
| | | | | | _PyObject_GC_TRACK is the macro version of PyObject_GC_Track, and according to documentation it should not be used for extension modules. | ||||
* | welcome to 2009, Python! | Benjamin Peterson | 2009-01-01 | 4 | -12/+11 |
| | |||||
* | fix highlighting | Benjamin Peterson | 2009-01-01 | 1 | -4/+4 |
| | |||||
* | Issue #4797: IOError.filename was not set when _fileio.FileIO failed to open | Hirokazu Yamamoto | 2009-01-01 | 2 | -3/+7 |
| | | | | file with `str' filename on Windows. | ||||
* | fill in actual issue number in tests | Antoine Pitrou | 2009-01-01 | 3 | -3/+3 |
| | |||||
* | Issue #3680: Reference cycles created through a dict, set or deque iterator ↵ | Antoine Pitrou | 2009-01-01 | 7 | -23/+96 |
| | | | | did not get collected. |