summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Mention use of profile.py to run a script (AMK).Guido van Rossum1997-06-022-0/+8
|
* Added putenv, ftruncate (AMK).Guido van Rossum1997-06-022-0/+38
|
* Mention use of pdb.py to run a script (AMK).Guido van Rossum1997-06-022-0/+8
|
* Added date, xgtitle, xover, xpath (AMK).Guido van Rossum1997-06-022-0/+64
|
* It's now using mimetools instead of rfc822Guido van Rossum1997-06-022-6/+6
|
* Fix a sentence which ends "...is 6, which." (AMK)Guido van Rossum1997-06-022-2/+2
|
* Mention abs(complex) -> magnitude (AMK).Guido van Rossum1997-06-022-6/+36
| | | | | Documented list(). Mention [raw_]input()'s interface to GNU readline.
* Added complex numbers (AMK).Guido van Rossum1997-06-022-22/+56
| | | | | Clarify that sort() works in-place. Renamed dict.absorb() to dict.update().
* Renamed dict.absorb() (too spungy) to dict.update().Guido van Rossum1997-06-021-3/+3
|
* Bugfix: last_changed would always print current time.Guido van Rossum1997-06-021-1/+1
|
* American spelling in doc string.Guido van Rossum1997-06-021-1/+1
|
* The usualGuido van Rossum1997-05-301-191/+193
|
* Use TRY_RUN, not TRY_COMPILE, to test for -Olimit (on Solaris,Guido van Rossum1997-05-301-4/+4
| | | | | | | with Sun's cc, the compile succeeds, but the link fails). Test for IRIX*/6* instead of for IRIX/6* -- on 64-bit IRIX systems, uname returns IRIX64.
* Added hint about permissions.Guido van Rossum1997-05-301-1/+5
|
* Protect roulette against empty FAQ.Guido van Rossum1997-05-301-1/+5
|
* Inclide the imports and chdir in the try/except.Guido van Rossum1997-05-301-4/+4
|
* Packer.pack_uhyper(): Fixes needed to properly pack unsigned 64 bitBarry Warsaw1997-05-291-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | longs where the top bit is set. First, change the masks so that they are `L' longs, otherwise the sign bits will get propagated to the result. Next, do not coerce to int before sending to pack_uint() otherwise Python will generate an OverflowError. Here is a test program that fails without the patch, but now succeeds: import xdrlib addr = (132, 151, 1, 71) uint = 0L for a in addr: uint = (uint << 8) | a ulong64 = uint << 32 p = xdrlib.Packer() p.pack_uhyper(ulong64) buf = p.get_buffer() u = xdrlib.Unpacker(buf) ulong64prime = u.unpack_uhyper() if ulong64 == ulong64prime: print 'okay' else: print 'bogus' print ulong64, ulong64prime
* Documented (slightly) the USE_CACHE_ALIGNED define, for the standaloneJack Jansen1997-05-292-2/+13
| | | | distribution
* Updated for 1.5a2 distributionJack Jansen1997-05-291-24/+17
|
* Projects for 1.5a2 distritbuionJack Jansen1997-05-2928-3179/+3249
|
* Version number and such for 1.5a2 distributionJack Jansen1997-05-294-1332/+1331
|
* Added copy() and absorb().Guido van Rossum1997-05-282-2/+12
|
* Remove '(' in column 0 of doc strings.Guido van Rossum1997-05-281-10/+12
| | | | Add dependency on dict.copy().
* Added dict.absorb() and dict.copy().Guido van Rossum1997-05-281-6/+70
|
* Hide .fdc files here.Guido van Rossum1997-05-283-2/+3
|
* Checking in zlib demo.Guido van Rossum1997-05-282-0/+143
|
* Tiny script to play with it on a Mac.Guido van Rossum1997-05-281-0/+7
|
* Tweak default source of query a bit so it is possible to invokeGuido van Rossum1997-05-281-3/+6
| | | | a CGI script from the command line with not environment variables.
* lowercase proxies env variables, for Windows.Guido van Rossum1997-05-281-0/+1
|
* Reworded the doc string to remove the need for The Emacs font-lock kludge.Guido van Rossum1997-05-281-15/+13
| | | | | This required (re)moving all occurrences of '(' in column 0, as well as changing "#!" to #!.
* Changed release note structure:Jack Jansen1997-05-288-762/+663
| | | | | - Relnotes contains current release notes - HISTORY contains all old release notes
* Added a range of resource numbers reserved for BruceJack Jansen1997-05-281-0/+3
|
* Widget._setup(): Support name=None in a similar way to the handling of otherFred Drake1997-05-272-2/+4
| | | | Tkinter keyword parameters.
* Set version to 0.4; get rid of '(' in column 1 in triple-queted string.Guido van Rossum1997-05-261-3/+2
|
* Initial revisionGuido van Rossum1997-05-261-0/+25
|
* Added marks for very recently (24 hours) and recently (7 days)Guido van Rossum1997-05-261-19/+35
| | | | | modified files. Added and used global now, entry.getmtime(), and entry.emit_marks().
* Added marks for very recently (24 hours) and recently (7 days)Guido van Rossum1997-05-261-15/+41
| | | | modified files. Throw things around a bit.
* Support for more general diffing and retrieving any old revision.Guido van Rossum1997-05-262-16/+64
| | | | Support for index formatting with local refs.
* Added keyword searching.Guido van Rossum1997-05-261-6/+27
|
* Added keyword searching radio buttons.Guido van Rossum1997-05-261-0/+6
|
* Don't need <BR> at end of <LI>.Guido van Rossum1997-05-261-1/+1
|
* Bugfix -- should pass headers=0 when formatting query results.Guido van Rossum1997-05-261-1/+1
|
* Add optional section titles to format_all.Guido van Rossum1997-05-261-4/+21
| | | | Allow for missing section titles in format_all and format_index.
* Oops, checked in the wrong SHORTNAME value.Guido van Rossum1997-05-261-1/+1
|
* Added a local customization feature: load some parameters from faqcust.Guido van Rossum1997-05-261-10/+22
|
* Initial revisionGuido van Rossum1997-05-261-0/+11
|
* Initial revisionGuido van Rossum1997-05-261-0/+19
|
* I'm happy with this.Guido van Rossum1997-05-262-277/+464
|
* Initial revisionGuido van Rossum1997-05-262-0/+1048
|
* Final touch -- bottom link points to FAQ Wizard home.Guido van Rossum1997-05-231-1/+1
|