| Commit message (Expand) | Author | Age | Files | Lines |
* | weakref.ReferenceError becomes a built-in exception now that weak ref objects | Fred Drake | 2001-10-05 | 1 | -0/+6 |
|
|
* | Introduced the oddly-missing PyList_CheckExact(), and used it to replace | Tim Peters | 2001-10-05 | 1 | -1/+1 |
|
|
* | Get rid of unique local ISSTRICTINT macro in favor of std PyInt_CheckExact. | Tim Peters | 2001-10-05 | 1 | -9/+6 |
|
|
* | Fix bug in profiler modifications detected only in debug builds. | Fred Drake | 2001-10-04 | 1 | -3/+26 |
|
|
* | Remove a couple of unused local variables (bug #445960, compiler warnings | Greg Ward | 2001-10-04 | 1 | -4/+2 |
|
|
* | Rationalize the events passed to the profiler (no changes for the tracer). | Fred Drake | 2001-10-04 | 2 | -10/+6 |
|
|
* | SF bug [#467265] Compile errors on SuSe Linux on IBM/s390. | Tim Peters | 2001-10-02 | 1 | -1/+1 |
|
|
* | SF bug [#466173] unpack TypeError unclear | Tim Peters | 2001-09-30 | 1 | -1/+5 |
|
|
* | PyErr_NormalizeException() | Jeremy Hylton | 2001-09-26 | 1 | -1/+12 |
|
|
* | Prevent a NULL pointer from being pushed onto the stack. | Jeremy Hylton | 2001-09-26 | 1 | -1/+5 |
|
|
* | Don't swap the arguments to PyFrame_BlockSetup when recreating the recently | Thomas Wouters | 2001-09-24 | 1 | -2/+2 |
|
|
* | Add optional docstrings to member descriptors. For backwards | Guido van Rossum | 2001-09-20 | 4 | -213/+235 |
|
|
* | Add support for restricting access based on restricted execution mode. | Guido van Rossum | 2001-09-17 | 1 | -5/+16 |
|
|
* | Supply code objects a new-style tp_members slot and tp_getattr impl. | Jeremy Hylton | 2001-09-14 | 1 | -16/+34 |
|
|
* | Get rid of builtin_open() entirely (the C code and docstring, not the | Tim Peters | 2001-09-13 | 1 | -20/+3 |
|
|
* | _PyBuiltin_Init(): For clarity, macroize this purely repetitive code. | Tim Peters | 2001-09-13 | 1 | -49/+25 |
|
|
* | Admit that we'll never add the args for a "call" event to the profile | Fred Drake | 2001-09-13 | 1 | -3/+0 |
|
|
* | SF bug [#460467] file objects should be subclassable. | Tim Peters | 2001-09-13 | 1 | -22/+13 |
|
|
* | build_class(): one more (hopefully the last) step on the way to | Guido van Rossum | 2001-09-12 | 1 | -14/+21 |
|
|
* | Replaced PyMac_FullPath by PyMac_FullPathname, which has an extra 'length' | Jack Jansen | 2001-09-10 | 1 | -1/+41 |
|
|
* | Improve threading on Solaris, according to SF patch #460269, submitted | Guido van Rossum | 2001-09-10 | 1 | -3/+8 |
|
|
* | Fix core dump in PyArg_ParseTuple() with Unicode arguments. | Jeremy Hylton | 2001-09-10 | 1 | -15/+17 |
|
|
* | SF bug [#458941] Looks like a unary minus bug. | Tim Peters | 2001-09-07 | 1 | -16/+49 |
|
|
* | Rename 'getset' to 'property'. | Guido van Rossum | 2001-09-06 | 1 | -2/+2 |
|
|
* | Patch #455231: Support ELF properly on OpenBSD. | Martin v. Löwis | 2001-09-05 | 1 | -1/+1 |
|
|
* | builtin_execfile(): initialize another local that the GCC on leroy | Guido van Rossum | 2001-09-05 | 1 | -1/+1 |
|
|
* | At Guido's suggestion, here's a new C API function, PyObject_Dir(), like | Tim Peters | 2001-09-04 | 1 | -137/+1 |
|
|
* | Move call_trace(..., PyTrace_CALL, ...) call to top of eval_frame. That | Neil Schemenauer | 2001-09-04 | 1 | -35/+35 |
|
|
* | builtin_dir(): Treat classic classes like types. Use PyDict_Keys instead | Tim Peters | 2001-09-04 | 1 | -17/+20 |
|
|
* | Make dir() wordier (see the new docstring). The new behavior is a mixed | Tim Peters | 2001-09-03 | 1 | -53/+134 |
|
|
* | Added glue routine for PyMac_BuildFSSpec, PyMac_GetFSRef and PyMac_BuildFSRef. | Jack Jansen | 2001-09-01 | 1 | -0/+4 |
|
|
* | Add warning mode for classic division, almost exactly as specified in | Guido van Rossum | 2001-08-31 | 1 | -1/+7 |
|
|
* | When re-writing a factor containing a unary negation of a literal, only | Fred Drake | 2001-08-30 | 1 | -0/+3 |
|
|
* | Do the int inlining only if the type is really an int, not whenever | Guido van Rossum | 2001-08-30 | 1 | -6/+9 |
|
|
* | fix for part of bug #453523: disable unmarshalling of code objects in | Michael W. Hudson | 2001-08-30 | 1 | -1/+7 |
|
|
* | Removed unreachable goto statement to silence SGI compiler. | Sjoerd Mullender | 2001-08-30 | 1 | -1/+0 |
|
|
* | Removed some unreachable break statements to silence SGI compiler. | Sjoerd Mullender | 2001-08-30 | 1 | -3/+0 |
|
|
* | Add a new function imp.lock_held(), and use it to skip test_threaded_import | Tim Peters | 2001-08-30 | 1 | -0/+19 |
|
|
* | SF bug [#456252] Python should never stomp on [u]intptr_t. | Tim Peters | 2001-08-29 | 1 | -2/+2 |
|
|
* | GUSI on the Mac creates threads with a default stack size of 20KB, which is | Jack Jansen | 2001-08-29 | 1 | -1/+21 |
|
|
* | marshal.c r_long64: When reading a TYPE_INT64 value on a box with 32-bit | Tim Peters | 2001-08-29 | 1 | -12/+24 |
|
|
* | The "O!" format code should implement an isinstance() test | Guido van Rossum | 2001-08-28 | 1 | -1/+1 |
|
|
* | If an integer constant can't be generated from an integer literal | Jeremy Hylton | 2001-08-27 | 1 | -5/+2 |
|
|
* | Refer to the toolbox modules by their official name (Carbon.AE), not the inte... | Jack Jansen | 2001-08-27 | 1 | -59/+59 |
|
|
* | PyErr_Format(): Factor out most of this code into | Barry Warsaw | 2001-08-24 | 1 | -114/+1 |
|
|
* | Add 'super' builtin type. | Guido van Rossum | 2001-08-24 | 1 | -0/+3 |
|
|
* | Add new built-in type 'getset' (PyGetSet_Type). | Guido van Rossum | 2001-08-23 | 1 | -0/+3 |
|
|
* | Mac toolbox modules have gotten an _ prepended to their name. | Jack Jansen | 2001-08-23 | 1 | -58/+58 |
|
|
* | When an inlined operation on two small ints causes overflow, don't | Guido van Rossum | 2001-08-23 | 1 | -32/+24 |
|
|
* | Introduce OverflowWarning -- to be issued when short int operations | Guido van Rossum | 2001-08-23 | 1 | -0/+7 |
|
|