546 Commits (0cb8e5131d0797d3bdb1494de842e98798174cf2)

Author SHA1 Message Date
Walter Dörwald c3da83fcd7 Make sure filter() never returns tuple, str or unicode 23 years ago
Walter Dörwald 531e000d2e PyUnicode_Resize() doesn't free its argument in case of a failure, 23 years ago
Walter Dörwald 903f1e0c40 filterstring() and filterunicode() in Python/bltinmodule.c 23 years ago
Neal Norwitz 94c30c0124 SF #661437, apply() should get PendingDeprecation 23 years ago
Martin v. Löwis 8afd7571a1 Patch #636005: Filter unicode into unicode. 23 years ago
Raymond Hettinger 69bf8f3f4e SF bug #655271: Slightly modify locals() doc 23 years ago
Raymond Hettinger bbfb910416 Make error message more specific for min() and max(). 23 years ago
Raymond Hettinger ea3fdf44a2 SF patch #659536: Use PyArg_UnpackTuple where possible. 23 years ago
Walter Dörwald d9a6ad3beb Enhance issubclass() and PyObject_IsSubclass() so that a tuple is 24 years ago
Martin v. Löwis 566f6afe9a Patch #512981: Update readline input stream on sys.stdin/out change. 24 years ago
Peter Schneider-Kamp 4c0134248c execfile should call PyErr_SetFromErrnoWithFilename instead of 24 years ago
Guido van Rossum c7903a13d2 A nice little speed-up for filter(): 24 years ago
Martin v. Löwis 31d2df5b60 Patch #550192: Set softspace to 0 in raw_input(). 24 years ago
Marc-André Lemburg cc8764ca9d Add C API PyUnicode_FromOrdinal() which exposes unichr() at C level. 24 years ago
Martin v. Löwis 6238d2b024 Patch #569753: Remove support for WIN16. 24 years ago
Guido van Rossum bea18ccde6 SF patch 568629 by Oren Tirosh: types made callable. 24 years ago
Martin v. Löwis 14f8b4cfcb Patch #568124: Add doc string macros. 24 years ago
Raymond Hettinger c4c453f5ae Skip Montanaro's patch, SF 559833, exposing xrange type in builtins. 24 years ago
Neal Norwitz 32a7e7f6b6 Change name from string to basestring 24 years ago
Guido van Rossum cacfc07d08 - A new type object, 'string', is added. This is a common base type 24 years ago
Tim Peters 39a86c2188 SF bug 555042: zip() may trigger MemoryError. 24 years ago
Tim Peters 67d687a114 builtin_zip(): Take a good guess at how big the result list will be, 24 years ago
Tim Peters 5de9842b34 Repair widespread misuse of _PyString_Resize. Since it's clear people 24 years ago
Guido van Rossum 7dab2426ca - New builtin function enumerate(x), from PEP 279. Example: 24 years ago
Jack Jansen 7b8c7546eb Mass checkin of universal newline support. 24 years ago
Guido van Rossum 77f6a65eb0 Add the 'bool' type and its values 'False' and 'True', as described in 24 years ago
Martin v. Löwis 3484a18af1 Patch #494045: patches errno and stat to cope on plan9. 24 years ago
Tim Peters d50e544b9f Docstring for filter(): Someone on the Tutor list reasonably complained 24 years ago
Martin v. Löwis cdc4451222 Include <unistd.h> in Python.h. Fixes #500924. 24 years ago
Jeremy Hylton 733c8935f9 Fix for SF bug [ #492403 ] exec() segfaults on closure's func_code 25 years ago
Jeremy Hylton 518ab1c02a Use PyOS_snprintf instead of sprintf. 25 years ago
Tim Peters 603c6831d0 SF patch 473749 compile under OS/2 VA C++, from Michael Muller. 25 years ago
Tim Peters a427a2b8d0 Rename "dictionary" (type and constructor) to "dict". 25 years ago
Guido van Rossum e2ae77b8b8 SF patch #474590 -- RISC OS support 25 years ago
Guido van Rossum d892357bf7 SF patch #471852 (anonymous) notes that getattr(obj, name, default) 25 years ago
Guido van Rossum 03290ecbf1 Implement isinstance(x, (A, B, ...)). Note that we only allow tuples, 25 years ago
Tim Peters 742dfd6f17 Get rid of builtin_open() entirely (the C code and docstring, not the 25 years ago
Tim Peters 4b7625ee83 _PyBuiltin_Init(): For clarity, macroize this purely repetitive code. 25 years ago
Tim Peters 59c9a645e2 SF bug [#460467] file objects should be subclassable. 25 years ago
Guido van Rossum 8bce4acb17 Rename 'getset' to 'property'. 25 years ago
Guido van Rossum b3a639ed7d builtin_execfile(): initialize another local that the GCC on leroy 25 years ago
Tim Peters 7eea37e831 At Guido's suggestion, here's a new C API function, PyObject_Dir(), like 25 years ago
Tim Peters 37a309db70 builtin_dir(): Treat classic classes like types. Use PyDict_Keys instead 25 years ago
Tim Peters 5d2b77cf31 Make dir() wordier (see the new docstring). The new behavior is a mixed 25 years ago
Guido van Rossum f5cb357468 Add 'super' builtin type. 25 years ago
Guido van Rossum 29a62dd6eb Add new built-in type 'getset' (PyGetSet_Type). 25 years ago
Tim Peters 9fa96bed6f Fix for bug [#452230] future division isn't propagated. 25 years ago
Tim Peters 6cd6a82db9 A fiddled version of the rest of Michael Hudson's SF patch 25 years ago
Martin v. Löwis 339d0f720e Patch #445762: Support --disable-unicode 25 years ago
Martin v. Löwis e3eb1f2b23 Patch #427190: Implement and use METH_NOARGS and METH_O. 25 years ago