summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* This commit was manufactured by cvs2svn to create tag 'r15a3'.v1.5a3cvs2svn1997-08-151-0/+1
|
* Another typo (importand).Guido van Rossum1997-08-151-1/+1
|
* Final touch...Guido van Rossum1997-08-151-4/+3
|
* Tweaked all l2h targets to remove the target directory before renamingGuido van Rossum1997-08-151-2/+4
| | | | the intermediate target directory.
* Fixes to make it pass latex without complaints.Guido van Rossum1997-08-152-20/+28
|
* Type ("thgis").Guido van Rossum1997-08-151-1/+1
|
* New, more complete list of what's new, pointing to Misc/NEWS for theGuido van Rossum1997-08-151-34/+86
| | | | | whole list. Also changed all references to the FAQ to point to the FAQ wizard.
* Use imp.find_module() as the most certain way to find the test data.Guido van Rossum1997-08-151-1/+5
|
* generated by regrtest.py -gJeremy Hylton1997-08-151-0/+1
|
* test the zlib moduleJeremy Hylton1997-08-151-0/+94
| | | | only produce output if somethign goes wrong
* Last minute changes for \B. AMK.Guido van Rossum1997-08-151-2/+2
|
* Added tests for \b, \B (AMK).Guido van Rossum1997-08-151-0/+13
|
* Last minut changes for \B, \S (?). AMK.Guido van Rossum1997-08-151-2/+2
|
* RegeneratedJack Jansen1997-08-1513-14/+14
|
* Added support for WCTabHandle, AuxWinHandle, PixPatHandle: no reasonJack Jansen1997-08-153-5/+59
| | | | for blacklisting them.
* Added #include <string.h> for memcpy()Jack Jansen1997-08-152-0/+2
|
* Added support for GDHandle, CTabHandle, ITabHandle and CCrsrHandle: noJack Jansen1997-08-153-4/+348
| | | | reason they were blacklisted, we can handle them as generic Handles.
* Added GetAuxiliaryControlRecord and SetControlColor, there was no goodJack Jansen1997-08-153-2/+39
| | | | reason they were excluded.
* Made AEDesc_{New,Convert} globalJack Jansen1997-08-152-8/+8
|
* Another checkpoint -- reorganized, in sections.Guido van Rossum1997-08-151-427/+466
|
* the usualGuido van Rossum1997-08-152-10/+14
|
* DateGuido van Rossum1997-08-152-2/+2
|
* .Guido van Rossum1997-08-151-0/+1
|
* Keep gcc -Wall happyGuido van Rossum1997-08-155-5/+4
|
* Checkpoint checkin of list of changes. Much more to follow, but it'sGuido van Rossum1997-08-151-0/+618
| | | | late...
* The usual.Guido van Rossum1997-08-1528-92/+910
|
* Added std copyright notice.Guido van Rossum1997-08-151-0/+31
|
* Oops, there was a bug in the output formatting - the last printedGuido van Rossum1997-08-141-2/+2
| | | | values would overwrite the next value.
* Added AMK's first cut at docs for re.pyGuido van Rossum1997-08-145-1/+927
|
* 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
|
* Moved some non-standard format characters out of the standard list.Guido van Rossum1997-08-141-20/+22
| | | | | | | Also moved %c and %Z out of there, even though they are standard, because these are locale dependent (and e.g. on Windows and Mac they return different strings). Finally, sorted the tables slightly different, to match my standard docs better (%a before %A).
* Added logmerge.pyGuido van Rossum1997-08-141-0/+1
|
* Consolidate a bunch of CVS or RCS logs read from stdin.Guido van Rossum1997-08-141-0/+124
|
* OK, reop is safe again.Guido van Rossum1997-08-141-2/+2
|
* Fixed refcount bug (thank you, Purify and AMK).Guido van Rossum1997-08-141-0/+1
|
* Several bug fixes.Jeremy Hylton1997-08-141-52/+70
| | | | | | | | -- initialize length to DEFAULTALLOC and not 0 -- resize string before returning (to remove '\000' padding) Also converted some compression routines to use PyString instead of buffer.
* Added more stuff on initialization (still rudimentary)Guido van Rossum1997-08-142-250/+866
|
* Added new intro sections (incomplete); fixed various typosGuido van Rossum1997-08-142-14/+374
|
* New version (changes are so minor that I don't bother to explain them).Guido van Rossum1997-08-141-2/+2
|
* Of course, this file should be empty except for an informative comment.Guido van Rossum1997-08-141-23/+1
|
* Add a separate SRC directory and insert it in front of the path.Guido van Rossum1997-08-141-1/+2
|
* Add missing semicolon to '&gt;'.Guido van Rossum1997-08-141-1/+1
|
* Added cvsfiles.py and treesync.pyGuido van Rossum1997-08-141-0/+2
|
* Source tree synchronization tool (for Windowes, mostly)Guido van Rossum1997-08-141-0/+200
|
* Print a list of files under CVS.Guido van Rossum1997-08-141-0/+42
|
* support C++ commentsGuido van Rossum1997-08-141-1/+3
|
* set LOOPS to 10000Guido van Rossum1997-08-142-2/+2
|
* Add XXX warning about fishy lineGuido van Rossum1997-08-141-0/+1
|
* Use _beginthread() and _endthread() in favor of CreateThread() andGuido van Rossum1997-08-141-16/+8
| | | | | | | ExitThread(). As discussed in c.l.p, this takes care of initialization and finalization of thread-local storage allocated by the C runtime system. Not sure whether non-MS compilers grok this though (but who cares :-).