Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Some VS 6.0 compatibility fixes from Hirokazu Yamamoto which are also useful ↵ | Christian Heimes | 2008-01-04 | 1 | -0/+1 |
| | | | | for later versions of MSVC. VS6 claims that fortran is a reserved word | ||||
* | Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases ↵ | Christian Heimes | 2007-12-02 | 1 | -1/+1 |
| | | | | in intobject.h | ||||
* | Use unicode for the errno.errorcode names | Neal Norwitz | 2007-08-24 | 1 | -2/+2 |
| | |||||
* | Check return result from Py_InitModule*(). This API can fail. | Neal Norwitz | 2006-01-19 | 1 | -0/+2 |
| | | | | Probably should be backported. | ||||
* | Getting rid of code dependent on GUSI or the MetroWerks compiler. | Jack Jansen | 2003-11-19 | 1 | -5/+0 |
| | |||||
* | Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototype | Mark Hammond | 2002-08-02 | 1 | -1/+1 |
| | | | | | | for Py_Main(). Thanks to Kalle Svensson and Skip Montanaro for the patches. | ||||
* | Patch #568124: Add doc string macros. | Martin v. Löwis | 2002-06-13 | 1 | -2/+2 |
| | |||||
* | Removed an XXX question (the answer is "yes" <wink>). | Tim Peters | 2002-01-26 | 1 | -1/+1 |
| | |||||
* | REMOVED all CWI, CNRI and BeOpen copyright markings. | Guido van Rossum | 2000-09-01 | 1 | -9/+0 |
| | | | | This should match the situation in the 1.6b1 tree. | ||||
* | Do the absolute minimal amount of modifications to eradicate | Barry Warsaw | 2000-09-01 | 1 | -12/+9 |
| | | | | | | | | | | | | | | | Py_FatalError() from module initialization functions. The importing mechanism already checks for PyErr_Occurred() after module importation and it Does The Right Thing. Unfortunately, the following either were not compiled or tested by the regression suite, due to issues with my development platform: almodule.c cdmodule.c mpzmodule.c puremodule.c timingmodule.c | ||||
* | Bunch of minor ANSIfications: 'void initfunc()' -> 'void initfunc(void)', | Thomas Wouters | 2000-07-21 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | and a couple of functions that were missed in the previous batches. Not terribly tested, but very carefully scrutinized, three times. All these were found by the little findkrc.py that I posted to python-dev, which means there might be more lurking. Cases such as this: long func(a, b) long a; long b; /* flagword */ { and other cases where the last ; in the argument list isn't followed by a newline and an opening curly bracket. Regexps to catch all are welcome, of course ;) | ||||
* | - ANSI-fication | Fredrik Lundh | 2000-07-09 | 1 | -5/+1 |
| | | | | (patch #100784 by Peter Schneider-Kamp) | ||||
* | Change copyright notice - 2nd try. | Guido van Rossum | 2000-06-30 | 1 | -6/+0 |
| | |||||
* | Change copyright notice. | Guido van Rossum | 2000-06-30 | 1 | -21/+6 |
| | |||||
* | initerrno(): Nailed a not-so-tiny memory leak. The de dictionary is | Barry Warsaw | 1999-01-27 | 1 | -1/+2 |
| | | | | | put into the module dict, but is never DECREF'd in this function, so it and all its contents leak. | ||||
* | Add DL_EXPORT() to all modules that could possibly be used | Guido van Rossum | 1998-12-04 | 1 | -1/+1 |
| | | | | on BeOS or Windows. | ||||
* | Added a module docstring (that's all this module needs). | Guido van Rossum | 1998-08-11 | 1 | -1/+15 |
| | |||||
* | Got rid of the errorstr dictionary, which is redundant now that | Guido van Rossum | 1997-11-04 | 1 | -21/+9 |
| | | | | there's os.strerror() -- also, it would form a locale liability. | ||||
* | Changes submitted by Marc-Andre Lemburg to add two tables: errorcode | Guido van Rossum | 1997-09-28 | 1 | -368/+622 |
| | | | | | | maps errno numbers to errno names (e.g. EINTR), and errorcode maps them to message strings. (The latter is redundant because the new call posix.strerror() now does the same, but alla...) | ||||
* | (Jack:) Mac only: get GUSI errno.h values too. | Guido van Rossum | 1997-04-11 | 1 | -0/+5 |
| | |||||
* | Removed a #inlclude <errno.h> since it's implied with "Python.h" | Roger E. Masse | 1996-12-13 | 1 | -2/+0 |
| | |||||
* | New permission notice, includes CNRI. | Guido van Rossum | 1996-10-25 | 1 | -12/+19 |
| | |||||
* | Added Sam Rushing's errno module | Guido van Rossum | 1996-07-24 | 1 | -0/+561 |