Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | PEP 3123: Provide forward compatibility with Python 3.0, while keeping | Martin v. Löwis | 2007-07-21 | 1 | -4/+3 |
| | | | | | backwards compatibility. Add Py_Refcnt, Py_Type, Py_Size, and PyVarObject_HEAD_INIT. | ||||
* | Bug #1486663: don't reject keyword arguments for subclasses of builtin | Georg Brandl | 2007-01-21 | 1 | -1/+1 |
| | | | | types. | ||||
* | Check return result from Py_InitModule*(). This API can fail. | Neal Norwitz | 2006-01-19 | 1 | -0/+2 |
| | | | | Probably should be backported. | ||||
* | Disallow keyword arguments for type constructors that don't use them. | Georg Brandl | 2005-08-26 | 1 | -0/+3 |
| | | | | (fixes bug #1119418) | ||||
* | SF bug #812202: randint is always even | Raymond Hettinger | 2003-10-05 | 1 | -0/+44 |
| | | | | | | | * Added C coded getrandbits(k) method that runs in linear time. * Call the new method from randrange() for ranges >= 2**53. * Adds a warning for generators not defining getrandbits() whenever they have a call to randrange() with too large of a population. | ||||
* | PyType_GenericAlloc is inherited from object. | Raymond Hettinger | 2003-05-23 | 1 | -1/+1 |
| | |||||
* | PyObject_IsTrue() can return an error condition. | Raymond Hettinger | 2003-04-23 | 1 | -1/+4 |
| | | | | Adding code to handle it properly. | ||||
* | Minor source formatting fixes. | Raymond Hettinger | 2003-04-16 | 1 | -2/+2 |
| | |||||
* | Patch #661760: Cygwin auto-import module patch | Jason Tishler | 2003-01-06 | 1 | -6/+3 |
| | | | | | | | | | | | | The attached patch enables shared extension modules to build cleanly under Cygwin without moving the static initialization of certain function pointers (i.e., ones exported from the Python DLL core) to a module initialization function. Additionally, this patch fixes the modules that have been changed in the past to accommodate Cygwin. | ||||
* | Try to get compilation working for cygwin | Neal Norwitz | 2002-12-31 | 1 | -3/+6 |
| | |||||
* | SF patch 658251: Install a C implementation of the Mersenne Twister as the | Raymond Hettinger | 2002-12-29 | 1 | -0/+528 |
core generator for random.py. |