summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
...
* 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
|
* Couple more names. We need to add way more names -- I'll have to digGuido van Rossum2000-03-311-0/+21
| | | | them out of the changelogs :-(
* slightly modified version of Greg Ewing's extended call syntax patchJeremy Hylton2000-03-281-0/+1
| | | | | | | | | | | | | | | | | | | | | | | executive summary: Instead of typing 'apply(f, args, kwargs)' you can type 'f(*arg, **kwargs)'. Some file-by-file details follow. Grammar/Grammar: simplify varargslist, replacing '*' '*' with '**' add * & ** options to arglist Include/opcode.h & Lib/dis.py: define three new opcodes CALL_FUNCTION_VAR CALL_FUNCTION_KW CALL_FUNCTION_VAR_KW Python/ceval.c: extend TypeError "keyword parameter redefined" message to include the name of the offending keyword reindent CALL_FUNCTION using four spaces add handling of sequences and dictionaries using extend calls fix function import_from to use PyErr_Format
* Marc-Andre Lemburg:Guido van Rossum2000-03-281-6/+7
| | | | | | | | | | | | | | | The attached patch set includes a workaround to get Python with Unicode compile on BSDI 4.x (courtesy Thomas Wouters; the cause is a bug in the BSDI wchar.h header file) and Python interfaces for the MBCS codec donated by Mark Hammond. Also included are some minor corrections w/r to the docs of the new "es" and "es#" parser markers (use PyMem_Free() instead of free(); thanks to Mark Hammond for finding these). The unicodedata tests are now in a separate file (test_unicodedata.py) to avoid problems if the module cannot be found.
* Marc-Andre Lemburg:Guido van Rossum2000-03-241-4/+110
| | | | | | | | | | Attached you find the latest update of the Unicode implementation. The patch is against the current CVS version. It includes the fix I posted yesterday for the core dump problem in codecs.c (was introduced by my previous patch set -- sorry), adds more tests for the codecs and two new parser markers "es" and "es#".
* On 17-Mar-2000, Marc-Andre Lemburg said:Barry Warsaw2000-03-201-3/+8
| | | | | | | | | | | | | Attached you find an update of the Unicode implementation. The patch is against the current CVS version. I would appreciate if someone with CVS checkin permissions could check the changes in. The patch contains all bugs and patches sent this week and also fixes a leak in the codecs code and a bug in the free list code for Unicode objects (which only shows up when compiling Python with Py_DEBUG; thanks to MarkH for spotting this one).
* Marc-Andre Lemburg: Python Unicode integration proposal, version 1.2.Guido van Rossum2000-03-101-0/+885
|
* Last try, think I got it now.Barry Warsaw1999-12-011-1/+0
|
* Once moreBarry Warsaw1999-12-011-0/+1
|
* Once moreBarry Warsaw1999-12-011-1/+0
|
* Urg!Barry Warsaw1999-12-011-0/+1
|
* more trivial stuff to test CVS -- should be the last?Barry Warsaw1999-12-011-1/+1
|
* testing CVS once moreBarry Warsaw1999-12-011-1/+0
|
* testing CVSBarry Warsaw1999-12-011-0/+1
|
* testing CVSBarry Warsaw1999-12-011-1/+0
|
* testing CVSBarry Warsaw1999-12-011-0/+1
|
* testing CVSBarry Warsaw1999-12-011-1/+0
|
* Minor change to test new CVS reportingBarry Warsaw1999-12-011-0/+1
|
* Minor change to test new CVS reportingBarry Warsaw1999-12-011-1/+1
|
* Minor change to test new CVS reportingBarry Warsaw1999-12-011-1/+0
|
* Minor change to test new CVS reportingBarry Warsaw1999-12-011-1/+1
|