summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* Add a comment explaining that this script is probably not useful outside theFred Drake1998-08-111-4/+6
| | | | | standard Python documentation, since the mkhowto.sh script is. Let there be no doubts....
* Make sure the icons/ directory is created even if only one document isFred Drake1998-08-111-6/+6
| | | | converted.
* Better check in the date from the last magic-fix-release. ;-)Fred Drake1998-08-111-1/+1
|
* Control when/where navigation bars will appear: top & bottom of each page.Fred Drake1998-08-111-3/+14
| | | | | | Include an additional button to the module index in the nav. bars if we generate a module index. Still need a button image, but the ALT text should do for now.
* Got all the 1.5.2 news that's fit to print. Now we may need toGuido van Rossum1998-08-101-102/+296
| | | | organize it better...
* Add a link to the Macintosh Module Reference here, too.Fred Drake1998-08-101-0/+3
|
* (imenu-example--python-method-regexp): Patch from Christian Tanzer:Barry Warsaw1998-08-101-1/+1
| | | | | | | "3.67 fixes Imenu as far as classes are concerned, but some default values for function arguments are still not supported." This ought to fix that problem.
* (py-compute-indentation): Changes to the `t' condition which affectBarry Warsaw1998-08-101-9/+15
| | | | | | | | | | | indetnation of normal statements: The regular expression that searches for indenting comment lines has been changed to not require a space/tab after the first `#'. We then explicitly look for py-block-comment-prefix depending on the value of py-honor-comment-indentation. I think this more accurately reflects the documentation for py-honor-comment-indentation.
* Checking in BeOS specific socket module.Guido van Rossum1998-08-102-0/+266
|
* Nannified.Guido van Rossum1998-08-101-3/+2
|
* Nannified, and re-indented with 4 spaces.Guido van Rossum1998-08-101-88/+88
|
* Fixed a few lines that tabnanny complained about (one space before theGuido van Rossum1998-08-101-5/+5
| | | | tabs).
* Untabified and deleted trailing blank lines.Guido van Rossum1998-08-101-9/+7
|
* New section header style.Fred Drake1998-08-10126-209/+364
| | | | Fix up a few synopses.
* do_cmd_moduleauthor(),Fred Drake1998-08-101-156/+180
| | | | do_cmd_sectionauthor(): Parallel the new macros.
* \moduleauthor,Fred Drake1998-08-101-0/+6
| | | | \sectionauthor: New macros to record attributions; no output.
* New style section headers.Fred Drake1998-08-1013-17/+33
|
* Some logical markup, some nits.Fred Drake1998-08-101-25/+26
|
* # mention Porting in list of filesGuido van Rossum1998-08-101-0/+1
|
* mini-faq on porting pythonGuido van Rossum1998-08-102-2/+44
|
* #Typos from previous checkinBarry Warsaw1998-08-101-2/+2
|