summaryrefslogtreecommitdiffstats
path: root/PC
Commit message (Collapse)AuthorAgeFilesLines
* Icons for Windows installer.Guido van Rossum1997-11-263-0/+0
|
* Added the HTML files.Guido van Rossum1997-11-261-24/+64
|
* WISE installer source for Python 1.5Guido van Rossum1997-11-251-0/+1104
|
* Added pypcre.c module.Guido van Rossum1997-11-252-0/+10
|
* Replace plat-os2 with plat-win, per Jeff Rush' suggestion.Guido van Rossum1997-11-241-1/+1
|
* Done a sort -u on the symbols (and replaced all tabs with spaces).Guido van Rossum1997-11-241-368/+365
|
* Oops, the sort took some whitespace into account.Guido van Rossum1997-11-241-5/+4
|
* Done a sort -u on the symbols.Guido van Rossum1997-11-241-295/+284
|
* ignore various VC++ turdsGuido van Rossum1997-11-221-0/+5
|
* Files specific to Visual Age C for OS/2 -- by Jeff RushGuido van Rossum1997-11-226-0/+4846
|
* Added Jeff Rush' commentsGuido van Rossum1997-11-221-0/+39
|
* win -> plat-winGuido van Rossum1997-11-221-3/+3
|
* Add PyImport_Inittab and PyOS_AfterForkGuido van Rossum1997-11-221-0/+2
|
* The target directory is now called dos-8x3, not dos_8x3.Guido van Rossum1997-10-071-5/+5
|
* Argh; do the same for the "Release" version of the config.Fred Drake1997-10-021-1/+1
|
* Fix up include directories for compiling the resources.Fred Drake1997-10-021-1/+1
|
* Fix PYTHONPATH for new names; rename tkinter to lib-tk, rename win toGuido van Rossum1997-09-301-1/+1
| | | | plat-win, get rid of test (which is now a package).
* PyExc_NumberError -> PyExc_ArithmeticErrorFred Drake1997-09-301-1/+1
|
* Added PyExc_Exception and PyErr_NewException.Guido van Rossum1997-09-291-0/+2
|
* Seem to be some changes related to DLL version from string resource,Guido van Rossum1997-09-292-5/+44
| | | | again (Mark Hammond is the cause of all this).
* DLL version is now loaded from a string resource.Guido van Rossum1997-09-291-0/+7
|
* Remove #ifdef __cplusplus.Guido van Rossum1997-09-291-6/+6
|
* Bump version and store DLL version in a string variable (for branding).Guido van Rossum1997-09-291-1/+9
|
* Added PyImport_ImportModuleEx(name, globals, locals, fromlist); thisGuido van Rossum1997-09-051-0/+2
| | | | | | is like PyImport_ImporModule(name) but receives the globals and locals dict and the fromlist arguments as well. (The name is a char*; the others are PyObject*s).
* Added some symbols (I'm afraid more will come).Guido van Rossum1997-09-031-0/+3
|
* Change instructions to require use of PCbuild directory (instead ofGuido van Rossum1997-09-031-12/+7
| | | | just recommending it). At Mark Hammond's request.
* At Mark Hammond's suggestion:Guido van Rossum1997-09-035-17/+125
| | | | | | | - use the DLL versions of the C runtime (!) - change path settings so intermediate files go to Debug/temp or Release/temp - add resource file to python15.dll (can't remember what this does) - add a separate project to build the parser module
* Added new flags and exceptions; removed AccessError exception.Guido van Rossum1997-09-031-1/+5
|
* Added new Py_IsInitalized() API function to test the 'initialized' flag.Guido van Rossum1997-08-221-0/+2
|
* Added reopGuido van Rossum1997-08-211-0/+2
|
* Remove remark on python15.lib being in the Debug subdir only.Guido van Rossum1997-08-181-4/+1
|
* Changed the way python15.lib is included in the other projects.Guido van Rossum1997-08-183-24/+6
| | | | | Per Mark Hammond's suggestion, add it to the extra libs in Settings instead of to the project's source files.
* No longer used.Guido van Rossum1997-08-181-93/+0
|
* DevStudio (CV++ 5.0) Project files.Guido van Rossum1997-08-144-0/+734
|
* Updated for new situation; added VC++ 5.0 info and new path strategies.Guido van Rossum1997-08-141-22/+51
|
* Probably the last VC++ 4.2 makefile I'll check in.Guido van Rossum1997-08-131-247/+64
| | | | After this I will be using 5.0, which has binary workspace files...
* Small changes to readme and makefile; tested for 1.5a3!Guido van Rossum1997-08-132-6/+7
|
* removed getpath_nt.c in favor of revamped getpathp.cGuido van Rossum1997-08-131-203/+0
|
* Much rewritten. Added Win32 registry stuff (from getpath_nt.c, whichGuido van Rossum1997-08-131-55/+222
| | | | | | | is now obsolete), and changed the default path calculations. $PYTHONPATH is now added as a prefix (like it's always been on Unix); $PYTHONHOME takes precedence over the program pathname; and only one landmark is needed.
* Made it real. Changed locking() to work with file descriptors insteadGuido van Rossum1997-08-131-44/+134
| | | | | | of Python file objects. Added open_osfhandle() (Mark had done some work for that), get_osfhandle(), setmode(), and the console I/O functions kbhit(), getch(), getche(), ungetch(), and putch().
* Some changes to make it work on NT; add the directory where the binaryGuido van Rossum1997-08-131-2/+9
| | | | | | | | lives to the end of the path. (Still to do: add $PYTHONPATH to the front instead of using it as is; add the Win32 registry paths as in getpath_nt.c (which can then retire).)
* Moved PyWin_IsWin32s() here.Guido van Rossum1997-08-131-1/+15
|
* Remove #define main; remove vc40 from PYTHONPATH.Guido van Rossum1997-08-131-2/+1
|
* Renamed Py_input_hook to PyOS_InputHook.Guido van Rossum1997-08-111-1/+1
| | | | Also cleaned out some CR's left by the VC++ editor.
* Got the new structure working with MSVC 4.2.Guido van Rossum1997-08-075-3283/+155
| | | | | | main_nt.c is gone -- we can use Modules/python.c now. Added Mark Hammond's module msvcrt.c (untested). Added several new symbols.
* Removed Py_SuppressPrintingFlag flag; added newGuido van Rossum1997-07-191-1/+3
| | | | PyEval_{Acquire,Release}Thread() calls.
* Added remaining PyThread symbols.Guido van Rossum1997-07-161-0/+14
|
* Changed the reference of 'mappingobject.c' to 'dictobject.c'Roger E. Masse1997-06-051-162/+125
|
* Added Py_GetProgramFullPath (same as GetProgramName)Guido van Rossum1997-05-221-0/+7
|
* Added Py_GetProgramFullPathGuido van Rossum1997-05-221-0/+1
|