Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Patch by Mark Hammond to support 64-bit ints on MS platforms. | Guido van Rossum | 1998-08-25 | 1 | -0/+2 |
| | | | | | | The MS compiler doesn't call it 'long long', it uses __int64, so a new #define, LONG_LONG, has been added and all occurrences of 'long long' are replaced with it. | ||||
* | Define HAVE_STRERROR. | Guido van Rossum | 1998-08-12 | 1 | -0/+1 |
| | |||||
* | Back out of a recent policy change (Mark Hammond disagreed). | Guido van Rossum | 1998-08-11 | 1 | -27/+8 |
| | | | | The registry always comes first and the default is always appended. | ||||
* | Added a bunch of symbols detected by Marc Lemburg's script. | Guido van Rossum | 1998-08-09 | 1 | -5/+82 |
| | |||||
* | Sigh. More restructuring was needed. | Guido van Rossum | 1998-08-08 | 1 | -27/+57 |
| | | | | | Make an explicit test for whether the prefix is in fact the source directory, and then don't use the registry. | ||||
* | Add PyEval_CallFunction() and PyEval_CallMethod(). | Guido van Rossum | 1998-08-08 | 1 | -0/+2 |
| | |||||
* | This file's previous log message is bogus. The real change is that | Guido van Rossum | 1998-08-08 | 1 | -1/+1 |
| | | | | | when it gets the path from the registry, it no longer appends the default path to the end (which would mostly be a duplication). | ||||
* | This file's previous log message is bogus. | Guido van Rossum | 1998-08-08 | 1 | -1/+1 |
| | | | | The real change is that it now includes "Python.h". | ||||
* | Different version games: | Guido van Rossum | 1998-08-08 | 3 | -12/+20 |
| | | | | | | | - MS_DLL_ID is now set to "1.5" instead of "1.5.x" so Mark Hammond's extensions won't have to be changed. - FILEVERSION and PRODUCTVERSION are set to 1,5,2,1. (The last number could be the build# or the alpha release# or so.) | ||||
* | Shouldn't include the lib pragma when building python15.dll itself! | Guido van Rossum | 1998-08-08 | 1 | -0/+2 |
| | |||||
* | Added _PyTuple_Resize to list of exported symbols. Don't know how it | Guido van Rossum | 1998-08-08 | 1 | -0/+1 |
| | | | | could hide so long... | ||||
* | For Win32, added pragmas specifying the python15[_d].lib library. | Guido van Rossum | 1998-08-07 | 1 | -0/+7 |
| | |||||
* | Bump MS_DLL_ID to 1.5.2 | Guido van Rossum | 1998-08-06 | 1 | -1/+1 |
| | |||||
* | New version of makefile for Windows 3.1 from Jim Ahlstrom. | Guido van Rossum | 1998-08-05 | 1 | -111/+112 |
| | |||||
* | New version of VC 1.5 makefile from Jim Ahlstrom. | Guido van Rossum | 1998-08-05 | 1 | -2561/+2520 |
| | |||||
* | Get rid of obsolete setup_nt subdirectory. | Guido van Rossum | 1998-08-05 | 1 | -3/+0 |
| | |||||
* | Getting rid of this ancient stuff. | Guido van Rossum | 1998-08-05 | 5 | -534/+0 |
| | |||||
* | Jim A's new versions of these | Guido van Rossum | 1998-08-03 | 8 | -1540/+1818 |
| | |||||
* | Use Py_GetPythonHome() instead of getenv("PYTHONHOME"). | Guido van Rossum | 1998-07-27 | 1 | -1/+1 |
| | |||||
* | Two changes: | Guido van Rossum | 1998-07-27 | 1 | -3/+15 |
| | | | | | | (1) Use Py_GetPythonHome() instead of getenv("PYTHONHOME"); (2) Mark Hammond's patch to search for .pyc/.pyo landmark as well. | ||||
* | Added Py_{Get,Set}PythonHome. | Guido van Rossum | 1998-06-19 | 1 | -0/+2 |
| | |||||
* | Added _locale | Guido van Rossum | 1998-06-19 | 1 | -0/+2 |
| | |||||
* | Subject: Bug in PC/import_nt.c | Guido van Rossum | 1998-06-15 | 1 | -1/+4 |
| | | | | | | | | | | | | From: Dan Pierson <dan@remote.control.com> To: "Mark Hammond (E-mail)" <MHammond@skippinet.com.au>, "Guido van Rossum (E-mail)" <guido@cnri.reston.va.us> Date: Mon, 8 Jun 1998 17:25:07 -0400 RegistryQueryValue requires that its fourth argument be initialized to the length of the buffer being passed in, this wasn't being done. I also split the call and status test into two lines with a local variable so that I could look at the status in the debugger. | ||||
* | Quick fix -- define SIZEOF_LONG and SIZEOF_INT. | Guido van Rossum | 1998-05-29 | 1 | -0/+4 |
| | |||||
* | Moving to PCbuild | Guido van Rossum | 1998-05-29 | 1 | -1214/+0 |
| | |||||
* | Release the interpreter lock for calls that may block: _locking(), | Guido van Rossum | 1998-05-29 | 1 | -2/+10 |
| | | | | | | | _getch(), _getche(). Fix bogus error return when open_osfhandle() doesn't have the right argument list. | ||||
* | Replaced the VC++ 5.x instructions with a pointer to ../PCbuild. | Guido van Rossum | 1998-05-26 | 1 | -17/+3 |
| | |||||
* | Moved VC++ 5.x files to ../PCbuild. | Guido van Rossum | 1998-05-26 | 8 | -1172/+0 |
| | |||||
* | Mark Hammond writes: | Guido van Rossum | 1998-05-26 | 1 | -17/+13 |
| | | | | | | Also, here is a new version of import_nt.c, which allows you to register a Debug module in the registry. While I was there I removed some of the ugliness - what was I thinking :-) | ||||
* | Add PyErr_PrintEx and PySequence_Contains. | Guido van Rossum | 1998-05-22 | 1 | -0/+2 |
| | |||||
* | Install config.h. | Guido van Rossum | 1998-05-16 | 1 | -9/+15 |
| | | | | Adapt to new build conventions (get rid of Release directory). | ||||
* | Change the output names. Do away with the Release and Debug | Guido van Rossum | 1998-05-15 | 7 | -46/+39 |
| | | | | | | | | | | | | | | subdirectories. All final products go into the current directory (i.e., PCbuild). Object files go into temp-release and temp-debug. Debug versions of DLLs have _d appended to their basename, e.g. the debug version of python15.dll is python15_d.dll, the debug version of python.exe is python_d.exe, and the debug version of parser.pyd is parser_d.pyd. (See corresponding patch to importdl.c.) Uniformly changed all extension modules to use .pyd, not .dll. | ||||
* | Add some symbols. Remove the LIBRARY statement at the top (and the | Guido van Rossum | 1998-05-15 | 1 | -4/+4 |
| | | | | commented-out CODE/DATA statements). | ||||
* | Oops -- Lib/Test should be Lib/test, of course! | Guido van Rossum | 1998-04-14 | 1 | -5/+5 |
| | |||||
* | Missing symbols reported by Andrew Loewenstern. | Guido van Rossum | 1998-04-13 | 1 | -0/+4 |
| | |||||
* | Update version. | Guido van Rossum | 1998-04-13 | 1 | -2/+2 |
| | |||||
* | Set version and title to Python 1.5.1. | Guido van Rossum | 1998-04-11 | 1 | -2/+3 |
| | |||||
* | Oops, ".\DLLs" should be in the default path now. | Guido van Rossum | 1998-04-11 | 1 | -1/+1 |
| | |||||
* | Delete reopmodule.c | Guido van Rossum | 1998-04-10 | 1 | -4/+0 |
| | |||||
* | Delete references to initreop(). | Guido van Rossum | 1998-04-10 | 1 | -2/+0 |
| | |||||
* | Add HAVE_MKTIME. | Guido van Rossum | 1998-04-10 | 1 | -0/+3 |
| | |||||
* | Added Frozen and Tabcheck flags. | Guido van Rossum | 1998-04-10 | 1 | -0/+2 |
| | |||||
* | Give in to tabnanny | Guido van Rossum | 1998-04-06 | 2 | -106/+106 |
| | |||||
* | Mark Hammond's main program for a frozen application. | Guido van Rossum | 1998-03-20 | 1 | -0/+134 |
| | |||||
* | Added PyErr_NormalizeException | Guido van Rossum | 1998-03-17 | 1 | -0/+1 |
| | |||||
* | Fix some outdated comments (mostly by removing a large comment block | Guido van Rossum | 1998-02-19 | 1 | -16/+11 |
| | | | | | that was only causing confusing). Add free(userpath) and free(machinepath) statements to prevent some leaks. | ||||
* | Enable CHECK_IMPORT_CASE on Win32. | Guido van Rossum | 1998-02-19 | 1 | -0/+10 |
| | |||||
* | Fixed bitmaps; added include files and libs; | Guido van Rossum | 1998-02-05 | 1 | -19/+37 |
| | | | | | moved DLLs into their own directory (and added it to default path); install zlib.dll in SYS32; fixed location of help root. | ||||
* | As Jeff painfully found out, malloc(0) returns NULL on OS/2. | Guido van Rossum | 1998-01-11 | 1 | -1/+4 |
| | |||||
* | Add zlib and bsddb, and remove beta designation. | Guido van Rossum | 1997-12-31 | 1 | -3/+17 |
| |