Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix case where you start a new group immediately after a label. | Guido van Rossum | 1996-10-23 | 1 | -1/+1 |
| | | | | Thanks to Ka-Ping Yee. | ||||
* | Changed _Py_EllipsesObject -> _Py_EllipsisObject. | Guido van Rossum | 1996-10-21 | 1 | -1/+1 |
| | |||||
* | Major upgrade by Vladimir Marangozov. | Guido van Rossum | 1996-10-21 | 1 | -36/+144 |
| | |||||
* | Don't close an already closed socket. | Guido van Rossum | 1996-10-12 | 1 | -3/+5 |
| | |||||
* | Check for NULL pointer returned from localtime()/gmtime(). | Guido van Rossum | 1996-10-08 | 1 | -1/+10 |
| | |||||
* | Speedup of makeresult() by keeping a filler of (-1, -1) around. | Guido van Rossum | 1996-10-08 | 1 | -12/+25 |
| | |||||
* | Replace all uses of strncmp (in split, find, rfind) with memcmp, so | Guido van Rossum | 1996-10-04 | 1 | -3/+3 |
| | | | | | embedded \0 in the delimiter is handled properly. Thanks to Sjoerd for suggesting this. | ||||
* | Rationalize MS #ifdefs | Guido van Rossum | 1996-09-11 | 1 | -2/+2 |
| | |||||
* | Correct typo: return -1 for error, not 0 | Guido van Rossum | 1996-09-11 | 1 | -1/+1 |
| | |||||
* | Correct typo: return -1 for error, not NULL | Guido van Rossum | 1996-09-11 | 1 | -1/+1 |
| | |||||
* | Add text of argument to errors for atoi(), atol(), atof(). | Guido van Rossum | 1996-09-11 | 1 | -5/+25 |
| | |||||
* | Force O_BINARY in flags if defined, for e.g. Microsoft platforms. | Guido van Rossum | 1996-09-11 | 1 | -1/+10 |
| | |||||
* | Dynamically initialize ob_type field, for Windows DLL | Guido van Rossum | 1996-09-11 | 1 | -1/+2 |
| | |||||
* | Added lockf() call | Guido van Rossum | 1996-09-11 | 1 | -0/+45 |
| | |||||
* | Added Setup.local feature; make shared libs readonly | Guido van Rossum | 1996-09-11 | 1 | -3/+7 |
| | |||||
* | (parsermodule.c): Fixed sloppy typo: '==' -> '=' | Fred Drake | 1996-09-11 | 1 | -2/+2 |
| | |||||
* | Update based on Python 1.4b3. | Guido van Rossum | 1996-09-10 | 1 | -10/+7 |
| | |||||
* | Use #ifdef MS_WIN32 instead of _MSC_VER > 850. | Guido van Rossum | 1996-09-07 | 1 | -1/+1 |
| | |||||
* | Sleep() turns out to be win32 specific. | Guido van Rossum | 1996-09-07 | 1 | -7/+6 |
| | | | | | The timezone etc. overrides are win16 specific. Hope I got this right now... | ||||
* | Some changes for better Windows portability. | Guido van Rossum | 1996-09-06 | 1 | -7/+11 |
| | |||||
* | Typo (missing _) in _xdr line. | Guido van Rossum | 1996-08-30 | 1 | -1/+1 |
| | |||||
* | #include <netconfig.h> seems not needed and is harmful on NeXT, so drop it. | Guido van Rossum | 1996-08-30 | 1 | -2/+1 |
| | | | | Add proper initialization of rtn = NULL in unpack_double. | ||||
* | Move backup definition for hypot() to Python/hypot.c. | Guido van Rossum | 1996-08-29 | 1 | -27/+0 |
| | |||||
* | Call __initialize(), not __sinit() on Mac dynamic loading entry. | Guido van Rossum | 1996-08-26 | 1 | -1/+1 |
| | |||||
* | Get rid of unused local variable. | Guido van Rossum | 1996-08-21 | 1 | -1/+1 |
| | |||||
* | Removed environment, objc, sybase modules | Guido van Rossum | 1996-08-21 | 3 | -1064/+0 |
| | |||||
* | Get rid of some obsolete modules: | Guido van Rossum | 1996-08-21 | 1 | -16/+2 |
| | | | | | | - environment.c (we now have os.putenv) - sybase (a better one is in contrib/Databases/Sybase.*) - objc.c (incomplete and unsupportable by us) | ||||
* | Patches to make it compile with K&R C | Guido van Rossum | 1996-08-21 | 1 | -25/+25 |
| | |||||
* | Avoid complaint about inconsistent hypot() linkage on NT. | Guido van Rossum | 1996-08-21 | 1 | -0/+2 |
| | |||||
* | Raise ValueError on empty string passed into atoi(), atol(), atof(). | Guido van Rossum | 1996-08-21 | 1 | -0/+12 |
| | |||||
* | Support for old CPP | Guido van Rossum | 1996-08-21 | 1 | -0/+4 |
| | |||||
* | Hacks to support being a Windows DLL | Guido van Rossum | 1996-08-21 | 1 | -2/+5 |
| | |||||
* | Added delslice and delitem. | Guido van Rossum | 1996-08-21 | 1 | -32/+47 |
| | | | | | | Renamed and, or to and_, or_. Renamed all internal identifiers so as not to start with '__' (which is a compiler privilege); remove AIX hack. | ||||
* | New batch from Fred | Guido van Rossum | 1996-08-21 | 1 | -316/+428 |
| | |||||
* | Add #define MAC_TCL for Mac. | Guido van Rossum | 1996-08-20 | 1 | -0/+4 |
| | |||||
* | *noconfig* -> *shared*. | Guido van Rossum | 1996-08-20 | 1 | -6/+11 |
| | | | | Add # -lm comment to modules that need it as sharedlib. | ||||
* | Support *shared* and *static* as aliases for *noconfig* and *config*. | Guido van Rossum | 1996-08-20 | 1 | -0/+2 |
| | |||||
* | Test for xdrmem_create() failure. | Guido van Rossum | 1996-08-20 | 1 | -15/+30 |
| | | | | Minor lay-out changes. | ||||
* | Install shared libs with executable mode -- needed for HPUX, | Guido van Rossum | 1996-08-20 | 1 | -1/+4 |
| | | | | doesn't hurt elsewhere. | ||||
* | Changes by Rob Hooft for GMP 2.0.2 | Guido van Rossum | 1996-08-19 | 2 | -14/+32 |
| | |||||
* | Added _xdr module | Guido van Rossum | 1996-08-19 | 2 | -0/+168 |
| | |||||
* | Always include config.h | Guido van Rossum | 1996-08-19 | 2 | -4/+0 |
| | |||||
* | Declare initregex() as returning void, as it should be. | Guido van Rossum | 1996-08-19 | 1 | -0/+1 |
| | |||||
* | Remove some unused variables. | Guido van Rossum | 1996-08-19 | 1 | -9/+0 |
| | |||||
* | Declare a bunch of internal routines as returning void. | Guido van Rossum | 1996-08-19 | 1 | -13/+13 |
| | |||||
* | Made it palatable for K&R preprocessors. The spam macros don't have | Guido van Rossum | 1996-08-19 | 1 | -46/+53 |
| | | | | | to work as hard (but "stringizing" is still used, so we test the newly introduced HAVE_OLD_CPP config define). | ||||
* | Recognize *.sl and *.so as library (i.e. linker) arguments | Guido van Rossum | 1996-08-19 | 1 | -0/+2 |
| | |||||
* | Incorporate LDFLAGS calculated by configure (for --with-readline) | Guido van Rossum | 1996-08-19 | 1 | -2/+3 |
| | |||||
* | Changes for Windows NT -- this time it works, with Tcl4.1p1 (p1!!!) etc. | Guido van Rossum | 1996-08-13 | 1 | -16/+28 |
| | | | | | | - Use ckalloc(), ckfree() everywhere. - Default FREECAST to (char *). - Added comment with Tcl/Tk version info. | ||||
* | Include "mymath.h" instead of manually declaring math functions. | Guido van Rossum | 1996-08-08 | 1 | -2/+4 |
| |