summaryrefslogtreecommitdiffstats
path: root/PCbuild
Commit message (Collapse)AuthorAgeFilesLines
* Export mmap's entry point under Windows (thanks, MarkH & Guido!).Tim Peters2001-01-111-2/+4
|
* Make Windows build compile new xreadlinesmodule.Tim Peters2001-01-091-0/+15
|
* Prep the Windows installer for 2.0 final:Tim Peters2000-10-143-8/+14
| | | | | | | + Bump the build number. + Changed app name in installer dialogs. + Fiddled dialogs to repair grammar and get rid of anachronisms (e.g., "ProgMan" and "Program Manager" haven't made sense since Windows 3.1!).
* Prep Windows installer for 2.0c1: title and build number.Tim Peters2000-10-073-4/+6
|
* Yet another new unique extension in the test directory.Tim Peters2000-09-261-0/+5
|
* Bump Windows "build number" to 6.Tim Peters2000-09-252-2/+4
| | | | | Note that somebody still needs to change the interpreter to say "2.0b2"; I'm assuming that's a normal part of somebody's Unix release checklist.
* Implemented new os.startfile function, unique to Windows, exposing aTim Peters2000-09-221-2/+2
| | | | | | | | | | | | | | | | subset of Win32 ShellExecute's functionality. Guido wants this because IDLE's Help -> Docs function currently crashes his machine because of a conflict between his version of Norton AntiVirus (6.10.20) and MS's _popen. Docs for startfile are being mailed to Fred (or just read the docstring -- it tells the whole story). Changed webbrowser.py to use os.startfile instead of os.popen on Windows. Changed IDLE's EditorWindow.py to pass an absolute path for the docs (hardcoding ShellExecute's "directory" arg to "." as used to be done let IDLE work, but made the startfile command exceedingly obscure for other uses -- the MS docs are terrible, of course, & still not sure I understand it). Note that Windows Python must link with shell32.lib now! That's where ShellExecute lives.
* Windows installer:Tim Peters2000-09-211-9/+159
| | | | | Don't ship debug .dll, .pyd or .lib files. Saves space. Bumped the title to beta 2.
* Added simple batch file to make running the test suite from the PCbuildTim Peters2000-09-151-0/+8
| | | | directory less tedious.
* Windows installer: In the Start menu IDLE shortcut, explictly invoke theTim Peters2000-09-111-1/+2
| | | | | | pythonw.exe we just installed. Making Windows key off the .pyw extension instead screws people with multiple Python installations (reported more than once on c.l.py).
* Boost Windows build # to 5 (see new BUILDno.txt).Tim Peters2000-09-071-2/+2
|
* Windows installer, reflecting changes that went into a replacement 2.0b1Tim Peters2000-09-071-5/+17
| | | | | | | | | | .exe that will show up on PythonLabs.com later today: Include the Lib\xml\ package (directory + subdirectories). Include the Lib\lib-old\ directory. Include the Lib\test\*.xml test cases (well, just one now). Remove the redundant install of Lib\*.py (looks like a stray duplicate line that's been there a long time). Because of this, the new installer is a little smaller despite having more stuff in it.
* Document new Windows build # scheme.Tim Peters2000-09-071-0/+45
|
* Windows build: install NEWS.txt; bump BUILD# to 3 in preparation for nextTim Peters2000-09-052-2/+7
| | | | installer.
* Now that I've got real docs, redirect _DOC_ out of the Python 1.6 tree andTim Peters2000-09-051-1/+2
| | | | | to the new docs. Added a description to the Tcl/Tk file copies.
* test_mmap wrote null bytes into its expected-output file; this caused me toTim Peters2000-09-041-0/+4
| | | | | | | | | | | waste an hour tracking down an illusion; repaired it; writing/reading non- printable characters (except \t\r\n) into/outof text-mode files ain't defined x-platform, and at least some Windows text editors do surprising things in their presence. Also added a by-hand "build humber" to the Windows build, in an approximation of Python's inexplicable BUILD-number Unix scheme. I'll try to remember to increment it each time I make a Windows installer available. It's starting at 2, cuz I've put 2 installers out so far (both with BUILD #0).
* Install LICENSE.txt and README.txt.Tim Peters2000-09-011-12/+11
| | | | | | | In the Welcome dialog: Reworded reference to non-existent "Exit Setup" button. Removed useless "Back" button. Changed "push" to "click".
* Guido pointed out that the "non-admin install" blurb got displayedTim Peters2000-09-011-13/+11
| | | | | | | | very late in the process when running on Windows 2000 without admim privs. Rearranged so that the admin check is done at the start instead. Added words to the end of the blurb to make it very clear how to abort the install (wasn't obvious to me that "Cancel" was the right thing to click).
* Back off to HKCU (instead of HKLM) if user doesn't have "NT adminstratorTim Peters2000-09-011-1/+61
| | | | privileges". Untested except on Win98SE (where Wise writes to HKLM).
* Added installation of w9xpopen.exe.Tim Peters2000-09-011-1/+6
| | | | Removed installation of Lib/plat-win/*.py, because it no longer exists!
* In readme.txt, make what's needed to build the "optional" subprojectsTim Peters2000-08-253-7/+19
| | | | | | | much more explicit. Also document that we're moving to Tcl/Tk 8.3.2. Simplify .dsp files by getting rid of useless include paths. .wse file changed to reflect that my setup is different than Guido's: if you *build* a Python distro using python20.wse, beware!
* At Mark Hammond's request, removing registry keyGuido van Rossum2000-08-221-5/+0
| | | | | | | Software\Python\PythonCore\2.0\Dll\Python20.dll -- it's no longer needed according to him. Note: not yet tested!
* Thomas Heller noticed that the wrong registry entry was written forGuido van Rossum2000-08-221-1/+1
| | | | | | | the DLL. Replace %_SYSDEST_%\Python20.dll with %_DLLDEST_%\Python20.dll.
* Support for building the new w9xpopen.exe, which is used for reliable popen ↵Mark Hammond2000-08-142-0/+109
| | | | operation on Windows 9x.
* Revert this checkin:Trent Mick2000-08-1317-4040/+4040
| | | | | http://www.python.org/pipermail/python-checkins/2000-August/007072.html and make PCbuild/*.dsp PCbuild/*.dsw binary again.
* These files all used to be tagged as binary in CVS. I recently changed this soTrent Mick2000-08-1117-4040/+4040
| | | | | | that these files are treated as normal text files (which they are). However, the files also had to be changed to be stored in CVS internally with UNIX line terminators (they had DOS line terminators internally before this commit).
* somehow the 'Total Keys=1' disappears. No other changes.Guido van Rossum2000-08-011-23/+0
|
* Typo repair.Tim Peters2000-07-011-1/+1
|
* A bunch of project files were checked in as text files.Guido van Rossum2000-07-014-1991/+1991
| | | | They should all be binary (cvs admin -kv has now been applied).
* Add ucnhash (new subproject).Guido van Rossum2000-07-011-1/+1
|
* The Python include paths were not specified.Mark Hammond2000-07-011-2/+2
|
* Define a magical symbol and magic include path so it will compile withoutGuido van Rossum2000-07-011-0/+6
| | | | changes to the bsddb source.
* Add ucnhash to the workspace, as a dependency of python20.Mark Hammond2000-07-011-1/+15
|
* ucnhash now correctly builds for Windows.Mark Hammond2000-07-011-20/+16
|
* Update all projects so Debug builds use "/Zi" instead of "/ZI", which means ↵Mark Hammond2000-07-015-1893/+1894
| | | | | | everything should still build under MSVC5 NOTE: All these projects had messed-up line endings (but MSVC didnt mind). Executing a diff with "--ignore-all-space" will show the specific changes, but I made a complete checkin with correct line endiings as it is the correct thing to do!
* Repaired two URLs.Tim Peters2000-07-011-6/+6
|
* Update for 2.0b1. Also add more text, to be more explicit aboutTim Peters2000-07-011-29/+87
| | | | | | | | what the dozen+ subprojects are for, which are and aren't expected to build out of the box, and what else is needed to get them all to build. Also explained that Alpha configurations don't refer to pre-beta, but to the Alpha processor! That's baffled me for years <0.7 wink>.
* Add back a missing CRLF line ending.Guido van Rossum2000-06-301-1/+1
|
* Oops.Guido van Rossum2000-06-301-2/+2
| | | | | | | - The Tcl minor version should be 3 -- we're now using 8.3.1. - Remove the version number from yet another Tcl source file. Note that Tcl should be installed in C:\src\tcl for this to work.
* Poke and hope for Tcl version: now settable through _TCLMINOR_Guido van Rossum2000-06-301-4/+8
| | | | variable...
* add gcmoduleJeremy Hylton2000-06-301-0/+14
|
* Change the include etc paths to Tcl 8.3.1.Guido van Rossum2000-06-301-4/+4
|
* Move Wise install dir consistently to C:\Wise. Don't use %_WISE_% inGuido van Rossum2000-06-301-3/+3
| | | | include, it doesn't seem to work.
* Poke and hope for Tim...Guido van Rossum2000-06-301-6/+6
| | | | (Change title to beta 1, change a few paths for typical Win98 setup.)
* More 2.0 stuff -- fix workspace, remove 1.6 filesGuido van Rossum2000-06-303-3009/+16
|
* Making a tiny change to figure out what I'm going to screw upTim Peters2000-06-301-1/+2
| | | | by trying to use CVS under Windows at all ...
* final patches from Neil Schemenauer for garbage collectionJeremy Hylton2000-06-301-0/+14
|
* Bump version to 2.0.Guido van Rossum2000-06-292-0/+2920
|
* Finish converting the winreg extension to _winreg.Fred Drake2000-06-291-3/+3
|
* Marc-Andre Lemburg <mal@lemburg.com>:Marc-André Lemburg2000-06-281-0/+103
| | | | | | | MSVC project file for the new module ucnhash. This may have to be added to pcbuild.dsw with an dependancy on python16. By Bill Tutt.