Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Record 2.2.3c1 Windows build number. | Tim Peters | 2003-05-22 | 1 | -0/+2 |
| | |||||
* | Effectively renamed tokenize_tests.py to have a txt extension instead. | Tim Peters | 2003-05-12 | 1 | -0/+6 |
| | | | | | | | | | This file isn't meant to be executed, it's data input for test_tokenize.py. The problem with the .py extension is that it uses "non-standard" indentation, and it's good to test that, but reindent.py keeps wanting to fix it. But fixing the indentation causes the expected-output file to change, since exact line and column numbers are part of the tokenize.tokenize() output getting tested. | ||||
* | Leading "C:" no longer hardcoded in the default installation directory. | Tim Peters | 2003-05-08 | 1 | -2/+11 |
| | | | | | | After removing that, two testers on machines where C: is not the system drive reported that the installer suggested their system drive instead of C:, and that's what they wanted it to do. | ||||
* | Use os.walk() to find files to delete. | Tim Peters | 2003-04-26 | 1 | -13/+14 |
| | |||||
* | Try to recover from changes in the structure of the CSV package/module. | Tim Peters | 2003-04-24 | 1 | -14/+0 |
| | |||||
* | Bump Windows build number for 2.3b1. | Tim Peters | 2003-04-24 | 1 | -1/+1 |
| | |||||
* | Bump version number to 2.3b1. | Tim Peters | 2003-04-24 | 2 | -4/+6 |
| | |||||
* | Add MessageBeep() API. | Guido van Rossum | 2003-04-09 | 1 | -2/+2 |
| | |||||
* | Stop creating empty CVS directories in the csv subtree. | Tim Peters | 2003-03-22 | 1 | -1/+7 |
| | |||||
* | Changed the DLL base-address assignment for _csv so it no longer | Tim Peters | 2003-03-21 | 1 | -2/+2 |
| | | | | obviously overlaps w/ datetime (but may -- no time for more here now). | ||||
* | Teach the Windows build & installer about the new csv module + DLL. | Tim Peters | 2003-03-21 | 4 | -0/+134 |
| | |||||
* | Removed debugging print in test_tarfile. | Tim Peters | 2003-02-19 | 1 | -0/+18 |
| | | | | | In the Windows installer, continued the endless battle to copy over files with new one-shot extensions. | ||||
* | I entered the wrong year for 2.3a2. | Tim Peters | 2003-02-18 | 1 | -1/+1 |
| | |||||
* | Bump Windows build number for 2.3a2. | Tim Peters | 2003-02-18 | 1 | -1/+1 |
| | |||||
* | Bump version # to 2.3a2. | Tim Peters | 2003-02-18 | 2 | -4/+6 |
| | |||||
* | Use python_d.exe to build _ssl_d.pyd - we can not express that we depend | Mark Hammond | 2003-02-13 | 1 | -1/+1 |
| | | | | | on a release 'python.exe' for a debug build of _ssl. It may happen that Python.exe is currently broken, and we are trying to rebuild from scratch. | ||||
* | Move itertools module from the sandbox and into production. | Raymond Hettinger | 2003-02-01 | 1 | -0/+4 |
| | |||||
* | Updated info about test_bsddb3 failures. | Tim Peters | 2003-01-29 | 1 | -0/+4 |
| | |||||
* | Define XML_STATIC. | Martin v. Löwis | 2003-01-26 | 1 | -2/+2 |
| | |||||
* | Undo inclusion of Python.h. Remove HAVE_MEMCPY section. | Martin v. Löwis | 2003-01-26 | 1 | -2/+2 |
| | | | | Update Windows command line. | ||||
* | Bump the Windows build to use Sleepycat's 4.1.25.NC release (the | Tim Peters | 2003-01-24 | 3 | -62/+48 |
| | | | | latest bsddb release without strong cryptography). | ||||
* | CVS patch 669645: wininst.exe missing in Windows installer. | Tim Peters | 2003-01-17 | 1 | -0/+5 |
| | | | | Not anymore it ain't. | ||||
* | There are two more copyright notices in the Windows world: | Tim Peters | 2003-01-02 | 1 | -2/+2 |
| | | | | | | | | | PC/python_nt.rc sets up the DLL version resource (displayed when you right-click on the DLL and select Properties). PCbuld/python20.wse sets up the installer version resource (displayed when you right-click on the installer .exe and select Properties). Turns out this one hadn't been updated since 2001 <frown>! | ||||
* | SF bug 660795: logging missing from Python 2.3a1 for Windows. | Tim Peters | 2003-01-02 | 1 | -0/+8 |
| | | | | | | Added the logging package. In the meantime, Neal Norwitz added a test_logging.py to the std test suite, which would have caught this oversight in the Windows installer. | ||||
* | Merging in changes from r23a1-branch. Doc/makefile had conflicts, which | Tim Peters | 2003-01-01 | 1 | -0/+6 |
| | | | | I leave to Fred to sort out. | ||||
* | Bump the Windows build # for 2.3a1. | Tim Peters | 2002-12-31 | 2 | -1/+3 |
| | |||||
* | PEP 302 + zipimport: | Just van Rossum | 2002-12-30 | 1 | -0/+4 |
| | | | | | | | | | | | | | - new import hooks in import.c, exposed in the sys module - new module called 'zipimport' - various changes to allow bootstrapping from zip files I hope I didn't break the Windows build (or anything else for that matter), but then again, it's been sitting on sf long enough... Regarding the latest discussions on python-dev: zipimport sets pkg.__path__ as specified in PEP 273, and likewise, sys.path item such as /path/to/Archive.zip/subdir/ are supported again. | ||||
* | Revert the last change. Tim was faster and chose a different route. | Raymond Hettinger | 2002-12-30 | 1 | -2/+0 |
| | |||||
* | Document the _randommodule project for the Windows build. | Raymond Hettinger | 2002-12-30 | 1 | -0/+2 |
| | |||||
* | Taught the Windows build about _randommodule.c. This is compiled | Tim Peters | 2002-12-29 | 1 | -0/+4 |
| | | | | | into the core DLL, since it's not much code and lots of stuff uses it (e.g., try getting a tempfile name without it). | ||||
* | datetime escapes the sandbox. The Windows build is all set. I leave it | Tim Peters | 2002-12-16 | 4 | -0/+126 |
| | | | | | to others to argue about how to build it on other platforms (on Windows it's in its own DLL). | ||||
* | Made the _ssl subproject depend on the w9xpopen subproject, because | Tim Peters | 2002-12-11 | 1 | -20/+23 |
| | | | | build_ssl.py requires os.popen(). | ||||
* | Install the tools/i18n directory on Windows. A user requested it, | Tim Peters | 2002-12-10 | 1 | -0/+8 |
| | | | | Barry agreed, and I see no reason not to. | ||||
* | Added _ssl.lib to the installer too. Restored alphabetical order of | Tim Peters | 2002-12-04 | 2 | -5/+10 |
| | | | | DLL and lib sections. | ||||
* | Explain what's probably a problem unique to Win9x in building _ssl. | Tim Peters | 2002-12-04 | 1 | -0/+27 |
| | |||||
* | Clarify _ssl instructions. | Tim Peters | 2002-12-04 | 1 | -5/+11 |
| | |||||
* | Don't make all the OpenSSL executables, just the library we need. | Mark Hammond | 2002-12-03 | 1 | -1/+21 |
| | | | | Contributed by David Bolen. | ||||
* | Add the SSL libraries as dependencies. | Mark Hammond | 2002-12-03 | 1 | -1/+1 |
| | |||||
* | Ensure the ssl temp directory exists! | Mark Hammond | 2002-12-03 | 1 | -0/+1 |
| | |||||
* | Add _ssl.pyd to the list of files to be installed by Wise. | Mark Hammond | 2002-12-03 | 1 | -0/+5 |
| | |||||
* | Add _ssl build process for Windows. | Mark Hammond | 2002-12-03 | 5 | -0/+303 |
| | |||||
* | My MSVC seems to like writing the project names in quotes. Letting it do | Mark Hammond | 2002-12-03 | 1 | -19/+19 |
| | | | | this before I add the _ssl project, so that checkin is cleaner. | ||||
* | Try linking the static Sleepycat lib into _bsddb.pyd. Hard to say | Tim Peters | 2002-11-23 | 4 | -25/+21 |
| | | | | | | | | | | | | whether this is a correct thing to do: + There are linker warnings (see PCbuild\readme.txt). + test_bsddb passes, in both release and debug builds now. + test_bsddb3 has several failures, but it did before too. Also made pythoncore a dependency of the _bsddb project, updated build instructions, added database conversion XXX to NEWS, and fiddled the Windows installer accordingly. | ||||
* | More bsddb-on-Windows fiddling: | Tim Peters | 2002-11-23 | 2 | -6/+28 |
| | | | | | | | | + News blurb, but as much XXX as news. + Updated installer (install the new bsddb package, and the Berkeley DLL; still don't know how to fold that into _bsddb.pyd). + Fleshed out build instructions. + Debug Python still blows up. | ||||
* | Move Windows Python away from bsddb 1.85 and toward Sleepycat's latest. | Tim Peters | 2002-11-22 | 4 | -133/+172 |
| | | | | | | | The bsddb subproject is gone. The _bsddb subproject is new. There are problems here, but I'm out of time to work on this now. If anyone can address an XXX comment or two in readme.txt, please do! | ||||
* | Renamed Wise vrbl from _TCLMINOR_ to _TCLDIR_, to remove any script | Tim Peters | 2002-11-19 | 2 | -19/+23 |
| | | | | | dependence on the Tcl/Tk version number. Now you point it at the Tcl/Tk install you want to ship, and that's what it ships. | ||||
* | Repaired typos in the Tcl/Tk compilation instructions. Turns out they | Tim Peters | 2002-11-15 | 1 | -7/+6 |
| | | | | work on Win98SE too (yay!). | ||||
* | Windows changes to move from Tcl/Tk 8.3.2 to 8.4.1. I tested this by | Tim Peters | 2002-11-14 | 4 | -18/+64 |
| | | | | | | | running IDLE, and since I'm not a Tcl Guy I'm not sure what else to do. Up to you! See XXX comments in PCbuild\readme.txt for cautions. Also repaired typos in the new bz2-for-Windows instructions. | ||||
* | Install the bz2 DLL on Windows. | Tim Peters | 2002-11-09 | 1 | -0/+10 |
| | |||||
* | Start building the bz2 module on Windows. | Tim Peters | 2002-11-09 | 3 | -0/+139 |
| | | | | | | | | | | CAUTION: The Python test still has many failures, but I'm out of time for this now (already took much longer than hoped to get this far). The base bz2 library does pass its own tests (see next). CAUTION: People building on Windows have to download and build tne bz2 compression libraries now. See PCbuild\readme.txt for complete instructions. |