Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Don't require <dlfcn.h> -- rely on existence of dlopen(). | Guido van Rossum | 1996-08-20 | 1 | -1/+3 |
| | |||||
* | Always include config.h | Guido van Rossum | 1996-08-19 | 6 | -12/+0 |
| | |||||
* | Many little fixes: | Guido van Rossum | 1996-08-19 | 1 | -3/+19 |
| | | | | | | | | - support for SCO_SV dynamic loading - on Mac, auto-detect dynamic loading by __CFM68K__ or _powerc) - on Mac, long shared library extension is .cfm68k.slb or .ppc.slb - on hp, don't redefine hpux if already defined - add __file__ property to successfully loaded module | ||||
* | getprogramname -> Py_GetProgramName. | Guido van Rossum | 1996-08-19 | 1 | -2/+2 |
| | |||||
* | Raise TypeError, not KeyError, on unknown keyword argument. | Guido van Rossum | 1996-08-19 | 1 | -2/+1 |
| | |||||
* | Added *PyMarshal_WriteObjectToString() (moved the relevant code there | Guido van Rossum | 1996-08-19 | 1 | -18/+25 |
| | | | | from marshal_loads()). | ||||
* | Support for keyword arguments (PyArg_ParseTupleAndKeywords) donated by | Guido van Rossum | 1996-08-19 | 1 | -3/+383 |
| | | | | | | | Geoff Philbrick <philbric@delphi.hks.com> (slightly changed by me). Also a little change to make the file acceptable to K&R C compilers (HPUX, SunOS 4.x). | ||||
* | Don't test here for negative number to float power; that belongs in | Guido van Rossum | 1996-08-16 | 1 | -9/+0 |
| | | | | floatobject.c. | ||||
* | Don't die in resizestring() on filter(<func>, ""). | Guido van Rossum | 1996-08-16 | 1 | -1/+1 |
| | |||||
* | Disable support for access statement | Guido van Rossum | 1996-08-12 | 3 | -589/+567 |
| | |||||
* | Insert "./" in front of pathname when it contains no '/' (if USE_SHLIB) | Guido van Rossum | 1996-08-09 | 1 | -0/+6 |
| | |||||
* | Changes necessary for AIX. | Guido van Rossum | 1996-08-08 | 1 | -0/+15 |
| | |||||
* | Added casts from unsigned char to char when calling rds_object() on | Guido van Rossum | 1996-08-08 | 1 | -2/+2 |
| | | | | frozen code. | ||||
* | Removed unused var; added error check for ``lambda: x=1''. | Guido van Rossum | 1996-08-08 | 1 | -1/+5 |
| | |||||
* | Include mymath.h instead of declaring prototypes for math functions. | Guido van Rossum | 1996-08-08 | 1 | -5/+13 |
| | | | | Fix leak and unchecked error in complex(). | ||||
* | Put definition of _REENTRANT in config.h | Guido van Rossum | 1996-08-01 | 1 | -4/+0 |
| | |||||
* | Changes for AIX sharedlibs. | Guido van Rossum | 1996-07-31 | 1 | -14/+120 |
| | |||||
* | If NO_DYNAMIC_LINK is defined, load_dynamic_module() will always fail. | Guido van Rossum | 1996-07-31 | 1 | -0/+4 |
| | |||||
* | Added _REENTRANT definition | Guido van Rossum | 1996-07-31 | 1 | -0/+4 |
| | |||||
* | Always insert script directory in front of sys.path -- if there's no | Guido van Rossum | 1996-07-30 | 1 | -17/+17 |
| | | | | | sys.argv, insert "". Note that "." is removed as a default component of the path (see changes to getpath.c and Setup.in). | ||||
* | Better error message if stride used on normal sequence object | Guido van Rossum | 1996-07-30 | 1 | -2/+10 |
| | |||||
* | Add 'Ellipses' object. | Guido van Rossum | 1996-07-30 | 1 | -0/+1 |
| | |||||
* | Changes for slice and ellipses | Guido van Rossum | 1996-07-30 | 6 | -181/+355 |
| | |||||
* | Changes needed by NeXT (the only platform that seems to use this). | Guido van Rossum | 1996-07-30 | 1 | -3/+38 |
| | |||||
* | As a side effect of calling PySys_SetArgv (setpythonargv), the | Guido van Rossum | 1996-07-24 | 1 | -0/+18 |
| | | | | | | directory containing argv[0] is inserted in front of sys.path. If argv[0] contains no directory, an empty string is inserted. If argv is empty, nothing happens. | ||||
* | new .pyc magic number (** operator) | Guido van Rossum | 1996-07-21 | 1 | -1/+1 |
| | |||||
* | added 1996 | Guido van Rossum | 1996-07-21 | 1 | -2/+2 |
| | |||||
* | Py_complex; and WITHOUT_COMPLEX added to getargs.c | Guido van Rossum | 1996-07-21 | 4 | -6/+8 |
| | |||||
* | Slightly different Windows ifdefs | Guido van Rossum | 1996-06-28 | 2 | -4/+3 |
| | |||||
* | Corrections to aix_loaderror(), by Manus Hand. | Guido van Rossum | 1996-06-26 | 1 | -5/+7 |
| | |||||
* | Jeremy's patches for more robust handling of unmarshallable types. | Guido van Rossum | 1996-06-26 | 1 | -5/+22 |
| | |||||
* | Cosmetic change to the dox_8x3 hack. | Guido van Rossum | 1996-06-20 | 1 | -4/+3 |
| | |||||
* | Renamed static pow() to powerop() to avoid name conflict in some compilers. | Guido van Rossum | 1996-06-19 | 1 | -4/+4 |
| | |||||
* | New style interface via pointer variable. | Guido van Rossum | 1996-06-17 | 1 | -5/+6 |
| | |||||
* | struct frozen is now struct _frozen and comes from import.h. | Guido van Rossum | 1996-06-17 | 1 | -11/+5 |
| | |||||
* | Define sys.prefix and sys.exec_prefix (see Modules/getpath.c; from Makefile). | Guido van Rossum | 1996-06-17 | 1 | -0/+7 |
| | |||||
* | Got rid of florida hack and made it work with Solaris 2.5 pthreads. | Guido van Rossum | 1996-06-11 | 1 | -19/+7 |
| | | | | Wonder if this will break it on all other platforms :-) | ||||
* | grand renaming; added copyright to some files | Guido van Rossum | 1996-05-28 | 6 | -17/+119 |
| | |||||
* | Plug memory leak (variable names in code objects were being leaked!) | Guido van Rossum | 1996-05-28 | 1 | -0/+1 |
| | |||||
* | Removed some done "to do" items. | Guido van Rossum | 1996-05-24 | 1 | -9/+3 |
| | | | | Changed #ifdef DEBUG slightly. | ||||
* | rename printrefs, getobjects to _Py_ prefix | Guido van Rossum | 1996-05-24 | 2 | -3/+5 |
| | |||||
* | removed verbose decl; added win3.1 dynamic linking. | Guido van Rossum | 1996-05-23 | 1 | -3/+19 |
| | |||||
* | moved verbose decl to pydebug.h; added dos_8x3 feature | Guido van Rossum | 1996-05-23 | 1 | -2/+18 |
| | |||||
* | Added copyright. | Guido van Rossum | 1996-05-23 | 1 | -1/+31 |
| | | | | Include config.h which may define COMPILER. | ||||
* | removed sime redundant header includes and decls. | Guido van Rossum | 1996-05-23 | 1 | -8/+0 |
| | |||||
* | Removed some redundant header includes. | Guido van Rossum | 1996-05-23 | 1 | -5/+5 |
| | | | | | dir(object) now returns object.__dict__.keys() even if __dict__ is not a dictionary. | ||||
* | TRACE_REFS -> Py_TRACE_REFS | Guido van Rossum | 1996-05-23 | 1 | -2/+2 |
| | |||||
* | Use new names for debug macros. Don't include pythonrun.h. | Guido van Rossum | 1996-05-22 | 1 | -6/+5 |
| | |||||
* | Remember source filename as <module>.__file__. | Guido van Rossum | 1996-05-16 | 1 | -0/+3 |
| | |||||
* | Add list() method, analogous to tuple(). | Guido van Rossum | 1996-04-09 | 1 | -0/+36 |
| |