| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Try to recover from that glibc's ldexp apparently doesn't set errno on | Tim Peters | 2001-09-05 | 2 | -2/+22 |
|
|
* | loghelper(): Try to nudge the compiler into doing mults in an order that | Tim Peters | 2001-09-05 | 1 | -1/+1 |
|
|
* | Another / that should be a // (previously not caught because of | Guido van Rossum | 2001-09-05 | 1 | -1/+1 |
|
|
* | Add a test for the final branch in repr.Repr.repr1(), which deals with | Guido van Rossum | 2001-09-05 | 1 | -0/+5 |
|
|
* | Return reasonable results for math.log(long) and math.log10(long) (we were | Tim Peters | 2001-09-05 | 3 | -7/+104 |
|
|
* | Mechanical fiddling to make this easier to work with in my editor. | Tim Peters | 2001-09-04 | 1 | -18/+12 |
|
|
* | Added prototypes to shut gcc -Wstrict-prototypes up. | Jack Jansen | 2001-09-04 | 1 | -4/+2 |
|
|
* | Shut up a few more gcc warnings. | Jack Jansen | 2001-09-04 | 2 | -2/+2 |
|
|
* | Added prototypes to silence gcc strict-prototype warnings. | Jack Jansen | 2001-09-04 | 2 | -141/+48 |
|
|
* | Regenerated without default int return types. | Jack Jansen | 2001-09-04 | 17 | -33/+35 |
|
|
* | Don't use a default "int" return type, gcc gives a warning about it. | Jack Jansen | 2001-09-04 | 1 | -1/+1 |
|
|
* | Added pythonpath.r to the developer distribution. It's | Jack Jansen | 2001-09-04 | 1 | -4/+12 |
|
|
* | At Guido's suggestion, here's a new C API function, PyObject_Dir(), like | Tim Peters | 2001-09-04 | 5 | -138/+167 |
|
|
* | On MacOSX built the toolbox extension modules iff we're building with | Jack Jansen | 2001-09-04 | 1 | -25/+31 |
|
|
* | Template for an OSX PythonInterpreter application. | Jack Jansen | 2001-09-04 | 6 | -0/+66 |
|
|
* | Correction: the Borland C port isn't fully operational yet | Andrew M. Kuchling | 2001-09-04 | 1 | -3/+4 |
|
|
* | Photoshop sources for icon files. Not pretty, but hey! I'm not an | Jack Jansen | 2001-09-04 | 3 | -0/+0 |
|
|
* | [Bug #444589] Record empty directories in the install_data command | Andrew M. Kuchling | 2001-09-04 | 1 | -4/+12 |
|
|
* | [Bug #436732] install.py does not record a created *.pth file in the | Andrew M. Kuchling | 2001-09-04 | 1 | -2/+5 |
|
|
* | Revert one of the "division fixes" in test_long. It intends to try both | Tim Peters | 2001-09-04 | 1 | -2/+2 |
|
|
* | Make pprint more locale-friendly; patch contributed by Denis S. Otkidach. | Fred Drake | 2001-09-04 | 1 | -3/+21 |
|
|
* | [Bug #457654] bkgd() used a hard-coded A_NORMAL attribute, when it should | Andrew M. Kuchling | 2001-09-04 | 1 | -1/+1 |
|
|
* | Convert docstring to "raw" string. | Fred Drake | 2001-09-04 | 1 | -13/+13 |
|
|
* | The first batch of changes recommended by the fixdiv tool. These are | Guido van Rossum | 2001-09-04 | 19 | -38/+38 |
|
|
* | Added docstrings by Neal Norwitz. This closes SF bug #450980. | Fred Drake | 2001-09-04 | 5 | -3/+89 |
|
|
* | Move call_trace(..., PyTrace_CALL, ...) call to top of eval_frame. That | Neil Schemenauer | 2001-09-04 | 1 | -35/+35 |
|
|
* | Added docstring by Neal Norwitz. This closes SF bug #450981. | Fred Drake | 2001-09-04 | 1 | -35/+86 |
|
|
* | Added docstring by Neal Norwitz. This closes SF bug #450979. | Fred Drake | 2001-09-04 | 1 | -4/+10 |
|
|
* | Add more detail to the descriptions of the shutil functions. | Fred Drake | 2001-09-04 | 1 | -4/+9 |
|
|
* | Added documentation for sys.maxunicode and sys.warnoptions. | Fred Drake | 2001-09-04 | 1 | -1/+14 |
|
|
* | HTMLParser is allowed to be more strict than sgmllib, so let's not | Fred Drake | 2001-09-04 | 2 | -37/+17 |
|
|
* | - Reverse the meaning of the -m option: warnings about multiple / | Guido van Rossum | 2001-09-04 | 1 | -35/+85 |
|
|
* | Suppressing all DeprecationWarning messages was a bit of a problem for | Guido van Rossum | 2001-09-04 | 1 | -3/+3 |
|
|
* | Suppress the warning about regex here. | Guido van Rossum | 2001-09-04 | 1 | -0/+4 |
|
|
* | Enhanced the test for DOCTYPE declarations, added a test for dealing with | Fred Drake | 2001-09-04 | 1 | -14/+23 |
|
|
* | Added reasonable parsing of the DOCTYPE declaration, fixed edge cases | Fred Drake | 2001-09-04 | 1 | -12/+260 |
|
|
* | On the mac some library paths returned were outdated, some were outright funny. | Jack Jansen | 2001-09-04 | 1 | -5/+3 |
|
|
* | Disabled _curses modules on MacOSX. The curses version is a 1994 BSD | Jack Jansen | 2001-09-04 | 1 | -1/+2 |
|
|
* | Whitespace normalization. | Tim Peters | 2001-09-04 | 5 | -8/+7 |
|
|
* | Fixed a typo and added more tests. | Tim Peters | 2001-09-04 | 1 | -1/+12 |
|
|
* | Change long/long true division to return as many good bits as it can; | Tim Peters | 2001-09-04 | 3 | -2/+78 |
|
|
* | Move int_true_divide next to the other division routines. | Tim Peters | 2001-09-04 | 1 | -6/+6 |
|
|
* | Move long_true_divide next to the other division routines (for clarity!). | Tim Peters | 2001-09-04 | 1 | -6/+6 |
|
|
* | Raise OverflowError when appropriate on long->float conversion. Most of | Tim Peters | 2001-09-04 | 5 | -23/+76 |
|
|
* | PEP 238 documented -Qwarn as warning only for classic int or long | Guido van Rossum | 2001-09-04 | 4 | -7/+11 |
|
|
* | 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 |
|
|