summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* Updated according to the changes made to the "s#" parser markerMarc-André Lemburg2000-09-211-20/+27
| | | | and bumped the version number to 1.7.
* arraymodule: Fix SF bug 113960.Tim Peters2000-09-161-0/+1
| | | | | | | | | | | | | | reverse() didn't work at all due to bad arg check. Fixed that. Added Brad Chapman to ACKS file, as the proud new owner of two implicitly copyrighted lines of Python source code <wink>. Repaired buffer_info's total lack of arg-checking. Replaced memmove by memcpy in reverse() guts, as memmove is often slower and the memory areas are guaranteed disjoint. Replaced poke-and-hope unchecked decl of tmp buffer size by assert-checked larger tmp buffer. Got rid of inconsistent spaces before open paren in docstrings. Added reverse() sanity tests to test_array.py.
* Describe the -h and -V flags. Closes patch #101496Barry Warsaw2000-09-151-0/+12
|
* Another typo (in the list comprehension example).Guido van Rossum2000-09-061-1/+1
|
* Fix three typos.Guido van Rossum2000-09-061-3/+3
|
* Added Windows news. Also repeated 1.6 Windows news since most people gettingTim Peters2000-09-051-2/+33
| | | | | | 2.0b1 for Windows will not have bothered getting 1.6. Also changed "Changed, New, Obsolete Tools" to say "None" since nobody had put an entry there.
* All the NEWS that I could finish in 15 minutes (and then some)Jeremy Hylton2000-09-051-13/+59
| | | | | Removed some attributions from the shorter entries in Changed Modules, because that section is so long.
* current progress on 2.0 NEWSJeremy Hylton2000-09-051-5/+79
|
* The malloc rearrangement was actually already in 1.6.Guido van Rossum2000-09-051-3/+0
|
* Added readline news. (Skip)Guido van Rossum2000-09-051-0/+3
|
* Barry Warsaw: Fixed -+ operator. Added some new sections. Leave someGuido van Rossum2000-09-051-2/+29
| | | | | | | | XXX notes for now. I could use help here!!!! Please mail me patches ASAP. We may have to put some of this off to 2.0final, but it's best to have it in shape now...
* Added the 2.0b1 news.Guido van Rossum2000-09-051-8/+264
|
* Added release dates (in some cases detemined by looking at the mtimeGuido van Rossum2000-09-041-2/+20
| | | | of distribution files in ftp://ftp.python.org/pub/python/src/).
* 1.6 is history.Guido van Rossum2000-09-041-1/+305
|
* Tim Peters: "Audun S. Runde mailto:audun@mindspring.com wins aGuido van Rossum2000-09-041-0/+1
| | | | | Fabulous Prize for being our first Windows ME tester! Also our only, and I think he should get another prize just for that."
* Patch by Martin von Löwis to give him his umlaut, to remove ChristianGuido van Rossum2000-09-021-3/+4
| | | | | | Tismer's clone, and to list Hajime Saitou's real name. Added a note that the file uses Latin-1 (as distributed).
* Updated to include all files here.Guido van Rossum2000-09-011-3/+7
|
* Delete too.Guido van Rossum2000-09-011-77/+0
|
* Deleted. Long obsolete.Guido van Rossum2000-09-011-48/+0
|
* Deleted. We no longer require disclaimers on contributions.Guido van Rossum2000-09-012-96/+0
|
* Deleted; this is ancient info.Guido van Rossum2000-09-011-399/+0
|
* Deleted. This is obsoleted by Tools/scripts/fixnotice.py.Guido van Rossum2000-09-011-75/+0
|
* Remove the 1.5.2 news. 2.0 news is still to be done.Guido van Rossum2000-09-011-2337/+2
|
* Moved NEWS from 1.5.2 here.Guido van Rossum2000-09-011-0/+2334
|
* Deleted. This information is now in ../LICENSE.Guido van Rossum2000-09-011-32/+0
|
* Clean up a bit. Drop -X option, update date, remove documentationGuido van Rossum2000-09-011-56/+27
| | | | | URLs, add various useful URLs. Update address and email. Drop PSA and copyright. Add license info.
* script that reports a fairly safe recursionlimit for a specific platformJeremy Hylton2000-08-311-0/+88
|
* Added James HenstridgeBarry Warsaw2000-08-301-0/+1
|
* This patch finalizes the move from UTF-8 to a default encoding inMarc-André Lemburg2000-08-031-19/+60
| | | | | | | | | | | | | | | | | | the Python Unicode implementation. The internal buffer used for implementing the buffer protocol is renamed to defenc to make this change visible. It now holds the default encoded version of the Unicode object and is calculated on demand (NULL otherwise). Since the default encoding defaults to ASCII, this will mean that Unicode objects which hold non-ASCII characters will no longer work on C APIs using the "s" or "t" parser markers. C APIs must now explicitly provide Unicode support via the "u", "U" or "es"/"es#" parser markers in order to work with non-ASCII Unicode strings. (Note: this patch will also have to be applied to the 1.6 branch of the CVS tree.)
* moving files to nondist/sf-htmlPeter Schneider-Kamp2000-07-141-390/+0
|
* Gosh - clean up that messy HTML; make it valid XHTML instead.Vladimir Marangozov2000-07-141-346/+330
|
* added information how to edit pages at http://python.sourceforge.netPeter Schneider-Kamp2000-07-141-8/+25
|
* small FAQ about Python CVS and patches at SourceForgePeter Schneider-Kamp2000-07-141-0/+389
|
* Change copyright notice.Guido van Rossum2000-06-301-21/+6
|
* s/REGENTS/COPYRIGHT HOLDERS/ followed by paragraph reflow.Guido van Rossum2000-06-301-8/+9
|
* The new copyright / license.Fred Drake2000-06-301-23/+27
|
* Setup.thread => Setup.configBarry Warsaw2000-06-301-1/+1
|
* Typo fix.Greg Ward2000-06-291-1/+1
|
* Some new names (some contributors of patches that haven't even beenGuido van Rossum2000-06-291-0/+3
| | | | accepted yet!)
* (py-execute-region): Make sure the new temporary buffer is current forBarry Warsaw2000-06-231-3/+4
| | | | the insertion of the text.
* Marc-Andre Lemburg <mal@lemburg.com>:Marc-André Lemburg2000-06-081-18/+18
| | | | | Updated to version 1.5. Includes typo fixes by Andrew Kuchling and a new section on the default encoding.
* (py-execute-region): Based on suggestions by Francois Pinard and SkipBarry Warsaw2000-05-231-4/+25
| | | | | | Montanaro, handle execution of indented regions by inserting an "if 1:" in front of the block. This better preserves things like triple quoted strings and commented regions. This patch resolves PR#264.
* Added a few new names...Guido van Rossum2000-05-111-0/+3
|
* M.-A. Lemburg <mal@lemburg.com>:Fred Drake2000-05-091-1/+4
| | | | | Added a useful link to Markus Kuhn's Unicode and UTF-8 FAQ.
* M.-A. Lemburg <mal@lemburg.com>:Fred Drake2000-04-131-7/+73
| | | | Updated to version 1.4.
* Version 1.3 of the Python Unicode Integration proposal.Guido van Rossum2000-04-101-3/+4
|
* Bunch of new names, mostly from patches and bugs mailing listsGuido van Rossum2000-04-101-1/+13
| | | | | (everyone who said something remotely useful in the last 100 messages I archived has been added :-).
* Two more names. I just realize that there may be more contributors toGuido van Rossum2000-03-311-0/+2
| | | | distutils lurking in CVS logs that I probably haven't read. Oh well.
* I believe I've now got all the names mentioned in the CVS logs sinceGuido van Rossum2000-03-311-0/+20
| | | | | | | | 1.5.2 was released, except those who contributed only to Doc files -- Fred has his own way of doing this. This doesn't mean that I've got everyone who contributed *before* 1.5.2 was released in here... :-(
* More names.Guido van Rossum2000-03-311-0/+20
|