| Commit message (Expand) | Author | Age | Files | Lines |
* | Rename the -D option to -Q, to avoid a Jython option name conflict. | Guido van Rossum | 2001-09-04 | 3 | -13/+13 |
|
|
* | Introduce new private API function _PyLong_AsScaledDouble. Not used yet, | Tim Peters | 2001-09-04 | 2 | -0/+61 |
|
|
* | builtin_dir(): Treat classic classes like types. Use PyDict_Keys instead | Tim Peters | 2001-09-04 | 3 | -28/+52 |
|
|
* | Don't use dir() to find instance attribute names. | Neil Schemenauer | 2001-09-03 | 1 | -3/+7 |
|
|
* | Fix the names of _PyObject_GC_TRACK and _PyObject_GC_UNTRACK when the GC is | Neil Schemenauer | 2001-09-03 | 1 | -2/+2 |
|
|
* | Restore a line deleted by mistake. | Tim Peters | 2001-09-03 | 1 | -0/+2 |
|
|
* | New restriction on pow(x, y, z): If z is not None, x and y must be of | Tim Peters | 2001-09-03 | 9 | -49/+79 |
|
|
* | Make dir() wordier (see the new docstring). The new behavior is a mixed | Tim Peters | 2001-09-03 | 5 | -64/+206 |
|
|
* | Made a doctest out of the examples in Guido's type/class tutorial. | Tim Peters | 2001-09-03 | 1 | -0/+498 |
|
|
* | Clarify the Borland situation, based on email from Stephen. | Tim Peters | 2001-09-02 | 1 | -3/+5 |
|
|
* | Repair typo in comment. | Tim Peters | 2001-09-02 | 1 | -1/+1 |
|
|
* | Added the last few missing files, and put everything in the right packages. | Jack Jansen | 2001-09-02 | 1 | -0/+0 |
|
|
* | Implement what the docstring said: multiple slashes per line are | Guido van Rossum | 2001-09-02 | 1 | -15/+26 |
|
|
* | Add news about dictionary() constructor. | Guido van Rossum | 2001-09-02 | 1 | -0/+4 |
|
|
* | Make dictionary() a real constructor. Accepts at most one argument, "a | Tim Peters | 2001-09-02 | 2 | -3/+80 |
|
|
* | Rewrite the tuple() docstring to parallel the list() docstring. | Tim Peters | 2001-09-02 | 1 | -4/+4 |
|
|
* | Repair apparent cut'n'pasteo in tuple() docstring. | Tim Peters | 2001-09-02 | 1 | -1/+1 |
|
|
* | Move the long minidom example to a separate file; \verbatiminput does the | Fred Drake | 2001-09-02 | 2 | -67/+66 |
|
|
* | An anonymous contributor reveals his name... | Guido van Rossum | 2001-09-02 | 1 | -0/+1 |
|
|
* | Added more text to the docstring, updated the way the exit status is | Guido van Rossum | 2001-09-02 | 1 | -31/+113 |
|
|
* | A grep-like tool that looks for division operators. | Guido van Rossum | 2001-09-02 | 1 | -0/+89 |
|
|
* | Whitespace normalization (tabs -> 4 spaces) in the Mac expectations. | Guido van Rossum | 2001-09-02 | 1 | -35/+35 |
|
|
* | Start items w/ "-" instead of "+" (consistency w/ earlier versions). | Tim Peters | 2001-09-02 | 1 | -18/+17 |
|
|
* | Silly typos. | Jack Jansen | 2001-09-02 | 1 | -2/+2 |
|
|
* | Don't call PyMac_HandleEvent in unix-Python | Jack Jansen | 2001-09-02 | 1 | -0/+2 |
|
|
* | Regenerated, mainly for new GC routines. | Jack Jansen | 2001-09-01 | 2 | -8/+38 |
|
|
* | xx.prj has been replaced by xx.mcp. | Jack Jansen | 2001-09-01 | 1 | -74/+183 |
|
|
* | Added glue routine for PyMac_BuildFSSpec, PyMac_GetFSRef and PyMac_BuildFSRef. | Jack Jansen | 2001-09-01 | 4 | -8/+18 |
|
|
* | Don't call PyMac_HandleEvent if we're in unix-Python. | Jack Jansen | 2001-09-01 | 2 | -0/+4 |
|
|
* | Include Carbon/Carbon.h if we're on OSX. | Jack Jansen | 2001-09-01 | 2 | -2/+2 |
|
|
* | Updated the Popt resources for the applets to the newest version. | Jack Jansen | 2001-09-01 | 7 | -0/+0 |
|
|
* | Added preferences/startup options for division warning | Jack Jansen | 2001-09-01 | 2 | -23/+37 |
|
|
* | Added preferences/startup options for division warning | Jack Jansen | 2001-09-01 | 6 | -13/+28 |
|
|
* | The beginnings of a script to help finding / operators that may need | Guido van Rossum | 2001-09-01 | 1 | -0/+237 |
|
|
* | Add Listbox.itemconfig[ure] call. (A "recent" addition to Tk -- 8.0 | Guido van Rossum | 2001-09-01 | 1 | -5/+26 |
|
|
* | Added the "Host" header to the "GET" example. | Fred Drake | 2001-09-01 | 1 | -0/+1 |
|
|
* | Add various and sundry news items -- most mine, one Barry's, one | Guido van Rossum | 2001-08-31 | 1 | -0/+44 |
|
|
* | Oops. The -W option takes args, not -X. | Guido van Rossum | 2001-08-31 | 1 | -1/+1 |
|
|
* | Allow for the possibility that globals['__name__'] does not exist; | Guido van Rossum | 2001-08-31 | 1 | -1/+4 |
|
|
* | Add warning mode for classic division, almost exactly as specified in | Guido van Rossum | 2001-08-31 | 9 | -25/+146 |
|
|
* | Fix a memory leak in str_subtype_new(). (All the other | Guido van Rossum | 2001-08-31 | 1 | -3/+3 |
|
|
* | Correct name mangling algorithm, and add a comment. | Guido van Rossum | 2001-08-31 | 1 | -2/+1 |
|
|
* | Give 'super' a decent repr(), and readonly attributes to access the | Guido van Rossum | 2001-08-30 | 1 | -11/+36 |
|
|
* | Added all the new files in the right packages and file groups (I think, untes... | Jack Jansen | 2001-08-30 | 1 | -0/+0 |
|
|
* | SF bug #456621: normpath on Win32 not collapsing c:\\.. | Tim Peters | 2001-08-30 | 2 | -8/+35 |
|
|
* | Add Jack Jansen's explanation of the MacOS X changes | Andrew M. Kuchling | 2001-08-30 | 1 | -7/+43 |
|
|
* | Superseded by the (generated) xx.mcp. | Jack Jansen | 2001-08-30 | 1 | -0/+0 |
|
|
* | Case mismatch in "import Types". Apparently nobody has looked at this for a l... | Jack Jansen | 2001-08-30 | 1 | -2/+2 |
|
|
* | We should look in the directory containing the module, not in the module itse... | Jack Jansen | 2001-08-30 | 1 | -1/+1 |
|
|
* | Group some projects into "Done" and "To do". Get rid of Tim's merge | Guido van Rossum | 2001-08-30 | 1 | -213/+46 |
|
|