summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* New tool: reverse grep (greps from the end). Uses a fairly efficientGuido van Rossum1998-08-121-0/+65
| | | | strategy to read from the end of the file.
* Some minor updates.Fred Drake1998-08-121-6/+10
|
* Massive cleanup: Use Makefiles in subdirs properly, move most of theFred Drake1998-08-121-280/+96
| | | | | detailed build rules to the subdirs. Allow pretty much every useful target to be built directly from the top dir (no change in output location).
* Re-written to actually perform the conversion instead of using a sub-makeFred Drake1998-08-121-18/+76
| | | | | with the parent Makefile. Will also force the auxillary files to be created if they need to be.
* Update date & version number for release 1.5.2a1.Fred Drake1998-08-121-2/+2
|
* New Makefile; includes ../paper-letter/Makefile and sets PAPER=a4.Fred Drake1998-08-121-0/+2
|
* New Makefile, contains rules for building typeset versions.Fred Drake1998-08-121-0/+136
|
* New makefile which only contains the source dependencies specific to eachFred Drake1998-08-121-0/+181
| | | | document. The main Makefile will only contain rules and "system" dependencies.
* This commit was manufactured by cvs2svn to create tag 'r152a1'.v1.5.2a1cvs2svn1998-08-121-0/+1
|
* The usual.Guido van Rossum1998-08-1225-181/+363
|
* Get rid of mysterious bsddb.txt.Guido van Rossum1998-08-121-4/+0
|
* Define HAVE_STRERROR.Guido van Rossum1998-08-121-0/+1
|
* Delete CurrentVersion instead of setting it.Guido van Rossum1998-08-121-6/+1
|
* Added dependencies between projects.Guido van Rossum1998-08-121-28/+18
|
* Back out of a recent policy change (Mark Hammond disagreed).Guido van Rossum1998-08-111-27/+8
| | | | The registry always comes first and the default is always appended.
* Two fixes to find_class:Jeremy Hylton1998-08-111-9/+22
| | | | | | | | | | | | | | | 1. Only DECREF the class's module when the module is retrieved via PyImport_Import. If it is retrieved from the modules dictionary with PyDict_GetItem, it is using a borrowed reference. 2. If the module doesn't define the desired class, raise the same SystemError that pickle.py does instead of returning an AttributeError (which is cryptic at best). Also, fix the PyArg_ParseTuple in cpm_loads (the externally visible loads) function: Use "S" instead of "O" because cStringIO will croak with a "bad arguments to internal function" if passed anything other than a string.
* Bump RELEASE to 1.5.2a1.Fred Drake1998-08-111-1/+1
|
* Clean things up just a bit.Fred Drake1998-08-111-8/+15
|
* Helper script used in creating navigation buttons.Fred Drake1998-08-111-0/+35
|
* Get the <IMG> sizes right for the navigation buttons.Fred Drake1998-08-111-1/+7
|
* New contributor.Guido van Rossum1998-08-111-0/+1
|
* Fredrik Lundh's font wrapper.Guido van Rossum1998-08-111-0/+192
|
* Added coords() and identify() methods to Scale class.Guido van Rossum1998-08-111-0/+4
|
* Ok, blank.pbm is free to go.Fred Drake1998-08-117-4/+0
| | | | | | | The rest of these are new or replaced. The buttons are now all the same width. They have the transparency set right. They still need the attention of a designer. But they work, and we have a real button for the Modules Index.
* I think this is the last of them.Fred Drake1998-08-113-32/+0
|
* Gosh, there's a lot of them....Fred Drake1998-08-116-16/+0
|
* More files never used here.....Fred Drake1998-08-115-42/+0
|
* Reordered the news to make it more accessible. Also removed some dups.Guido van Rossum1998-08-111-191/+225
|
* Icons only needed if using the change control marks, which are bogus.Fred Drake1998-08-113-0/+0
|
* Remove files we never used; l2h would only use these if you use theFred Drake1998-08-118-0/+0
| | | | special "html" package, which we don't and won't.
* Use Perl's rename() function instead of system(); there's no need for twoFred Drake1998-08-111-2/+1
| | | | additional processes for each name change!
* Added the test package under "Frameworks".Fred Drake1998-08-111-0/+5
|
* Use repr() on the filename in EnvironmentError.__str__(). ThisGuido van Rossum1998-08-111-2/+2
| | | | | | | displays funny characters, like spaces or control characters, more clearly (one of my pet peeves in error messages). Also only suppress the filename if it is None; display it if it is '', since that would be a genuine (illegal) filename passed in!
* Template file for \documentclass{manual}.Fred Drake1998-08-111-0/+65
|
* Added a module docstring (that's all this module needs).Guido van Rossum1998-08-111-1/+15
|
* Added step 0: copy this file to <somedir>/lib<module>.tex, and edit the copy.Fred Drake1998-08-111-0/+4
|
* Updated to reflect recent changes.Fred Drake1998-08-111-16/+20
|
* Prepping for 1.5.2a1 release...Guido van Rossum1998-08-111-35/+33
|
* Moved to ../templates/module.tex.Fred Drake1998-08-111-144/+0
|
* Relocating file to Doc/templates.Fred Drake1998-08-111-181/+0
|
* Guess what -- BSD has bifurcated again. :-(Guido van Rossum1998-08-111-1/+1
|
* Added new files to the LIBFILES variable.Fred Drake1998-08-111-2/+4
|
* Removed now-documented modules from the list.Fred Drake1998-08-111-6/+0
|
* Added new sections.Fred Drake1998-08-111-1/+3
|
* Documentation for the compileall module.Fred Drake1998-08-111-0/+41
|
* Documentation for the py_compile module.Fred Drake1998-08-111-0/+35
|
* Added index entries.Fred Drake1998-08-111-5/+8
| | | | Small markup nits.
* Patch by Just van Rossum that changes how we search for submodules ofGuido van Rossum1998-08-111-19/+20
| | | | | | | frozen packages. (I *think* this means that we can now have a built-in module bar that's a submodule of a frozen package foo, by registering the built-in module with a name "foo.bar" in the table of builtin modules.)
* Two patches by Jason Harper:Guido van Rossum1998-08-111-37/+96
| | | | | | - Faster conversion to string for binary bases: linear instead of quadratic! - Allocate smaller result for certain masking ops, e.g. (1L<<30000) & 1.
* On the mac, shouldn't change the creator+type of the *source* file!Guido van Rossum1998-08-111-1/+0
|