summaryrefslogtreecommitdiffstats
path: root/Tools
Commit message (Collapse)AuthorAgeFilesLines
* Adjust compileall -x option to Makefile.pre.in. Fixes #1465093.Martin v. Löwis2006-04-071-1/+1
|
* Bug #1451341: find fuzzy marks correctly.Georg Brandl2006-04-061-1/+1
|
* The part checking for the sqlite DLL was looking at, andTim Peters2006-04-041-1/+1
| | | | | | | | | copying to, a wrong location (it copied the DLL under the Python directory, and gave it name 'PCbuild'). The Windows buildbots other than mine are probably hung now, waiting for someone to press "OK" on a popup box informing them that sqlite3.dll couldn't be found.
* Per Martins request, add empty.vbs to Tools\msi\msi.py.Thomas Heller2006-04-041-0/+1
| | | | This file is used by test_startfile.py.
* Adjust sqlite3 build process to Win64.Martin v. Löwis2006-04-041-1/+7
|
* sqlite on Windows:Tim Peters2006-04-041-1/+1
| | | | | | | | - The buildbot "fetch it" step failed at the end, due to using Unix syntax in the final "copy the DLL" step. test_sqlite was skipped as a result. - test_sqlite is no longer an expected skip on Windows.
* Add sqlite3 to the Windows build process.Martin v. Löwis2006-04-042-1/+10
|
* Add check_soundcard.vbs. Will backportMartin v. Löwis2006-04-031-1/+2
|
* Don't add multiple empty lines at the end of the codec. With this aWalter Dörwald2006-03-311-1/+1
| | | | regenerated codec should survive reindent.py unchanged.
* Move product_codes in their own file.Martin v. Löwis2006-03-282-34/+34
|
* Correct case in test for Windows 9X.Martin v. Löwis2006-03-281-1/+1
|
* Drop information about 2.4 DLLs.Martin v. Löwis2006-03-271-5/+0
|
* Whitespace for generated code.Walter Dörwald2006-03-271-0/+3
|
* Add product ids for 2.5.Martin v. Löwis2006-03-271-0/+8
|
* Patch #1443155: Add the incremental codecs support for CJK codecs.Hye-Shik Chang2006-03-262-1/+69
| | | | (reviewed by Walter Dörwald)
* SF bug #1457411, fix errors using variables that don't exist.Neal Norwitz2006-03-241-8/+8
| | | | | | Rename file -> filename to be clear. Will backport.
* Forward port of 43262: Add 2.4.3 UUIDs.Martin v. Löwis2006-03-231-0/+2
|
* Update to Tk 8.4.12 and Tix 8.4.0Martin v. Löwis2006-03-211-0/+14
|
* Update to OpenSSL 0.9.8aMartin v. Löwis2006-03-211-0/+3
|
* Remove regsub, reconvert, regex, regex_syntax and everything under lib-old.Neal Norwitz2006-03-167-25/+24
|
* Oops! Use python_d.exe _before_ it's destroyed :-)Tim Peters2006-03-161-1/+1
|
* Change the Windows buildbot "clean" step to removeTim Peters2006-03-161-1/+4
| | | | stale .pyc files.
* Patch #1436130: codecs.lookup() now returns a CodecInfo object (a subclassWalter Dörwald2006-03-152-22/+43
| | | | | | | of tuple) that provides incremental decoders and encoders (a way to use stateful codecs without the stream API). Functions codecs.getincrementaldecoder() and codecs.getincrementalencoder() have been added.
* Initialize VS environment in external.bat as well.Martin v. Löwis2006-03-131-0/+1
|
* Update to bsddb 4.4.20.Martin v. Löwis2006-03-131-0/+5
|
* Let the buildbot make a single pass in the test suite only.Martin v. Löwis2006-03-131-1/+1
|
* Update to bzip2 1.0.3Martin v. Löwis2006-03-132-0/+9
| | | | Make buildbot slaves automatically fetch bzip2 1.0.3.
* Adding the /useenv means that one's PATH actually gets through. This isTrent Mick2006-03-121-1/+1
| | | | | | | | important for the _ssl.vproj build. It calls build_ssl.py which tries to find a Perl to use. Without "/useenv" Visual Studio is getting a PATH from somewhere else (presumably from its internal environment configuration). The result is that build_ssl.py fallsback to its "well-known" locations for a Perl install.
* Move buildbot scripts to Tools/buildbot.Martin v. Löwis2006-03-123-0/+9
|
* Add changelog entry.Martin v. Löwis2006-03-111-0/+1
|
* Whitespace normalization.Tim Peters2006-03-101-1/+1
|
* Add ctypes.Martin v. Löwis2006-03-101-0/+2
|
* Update Unicode database to Unicode 4.1.Martin v. Löwis2006-03-091-11/+141
|
* NodeInfo.__gen_init(): Fiddle so that reindent.py isTim Peters2006-03-091-2/+5
| | | | | | | happy with the output as-is. This incidentally also gets rid of "an extra" blank line at the end of the output block that probably wasn't intended (although it doesn't matter one way or the other).
* Deleted the svn_mime-type application/octet-stream from PCBuild/pcbuild.sln.Thomas Heller2006-03-091-1/+1
| | | | | Tools/scripts/svneol.py: added the .sln and .vcproj extensions because these are text files. Ran svneol.py over the source tree.
* Directly read working copy data to obtain list of properties.Martin v. Löwis2006-03-091-8/+34
|
* Taught svneol to look at .c and .h files too, andTim Peters2006-03-091-4/+7
| | | | it found a bunch more in need of svn:eol-style.
* Simple utility to add svn:eol-style to text files underTim Peters2006-03-091-0/+48
| | | | | | SVN control. Like reindent.py, I expect to run this mindlessly from time to time, checking in whatever it happens to do ;-)
* Add _msi.pyd.Martin v. Löwis2006-03-051-0/+6
| | | | Add warning on Win9x.
* Open dll file in binary.Martin v. Löwis2006-03-051-3/+3
|
* Update for absolute/relative imports and ifelse-expressions.Thomas Wouters2006-03-031-1/+2
|
* PEP 343 -- the with-statement.Guido van Rossum2006-02-271-1/+2
| | | | | | | | | | | | | This was started by Mike Bland and completed by Guido (with help from Neal). This still needs a __future__ statement added; Thomas is working on Michael's patch for that aspect. There's a small amount of code cleanup and refactoring in ast.c, compile.c and ceval.c (I fixed the lltrace behavior when EXT_POP is used -- however I had to make lltrace a static global).
* Whitespace normalization.Tim Peters2006-02-181-1/+0
|
* Fix typoMartin v. Löwis2006-02-161-1/+1
|
* Add build support for AMD64.Martin v. Löwis2006-02-143-15/+53
|
* Whitespace normalization.Tim Peters2006-02-111-1/+1
|
* One more mod for support of C++ classes.Jack Jansen2006-02-101-1/+1
|
* For overriding C++ methods we also need to know whether a parameterJack Jansen2006-02-104-22/+45
| | | | is an output parameter or not. Added support for that.
* Fixed an oversight and a misunderstanding of PEP253:Jack Jansen2006-02-071-2/+20
| | | | | | | | | - Call tp_dealloc on the static baseclass, not dynamic (which leads to infinite loops with more than one baseclass) - Call tp_new and tp_init on baseclasses (overridable) -This line, and those below, will be ignored-- M bgen/bgenObjectDefinition.py
* Add two missing markup tags.Georg Brandl2006-01-231-1/+1
|