Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Moshe Zadka <moshez@math.huji.ac.il>: | Fred Drake | 2000-07-03 | 1 | -8/+106 |
| | | | | | | | Substantial updates to reflect Moshe's Gordon's enhancements to the module. Additional changes from Fred to reflect his changes to the module as well. | ||||
* | cmpfiles(): Added shallow and use_statcache parameters, with same meanings | Fred Drake | 2000-07-03 | 1 | -14/+13 |
| | | | | | | and defaults as for filecmp.cmp(). Updated docstring accordingly, and formatted it more like others in the standard library. | ||||
* | Martin von Löwis <martin@loewis.home.cs.tu-berlin.de>: | Fred Drake | 2000-07-03 | 1 | -40/+9 |
| | | | | | | | This patch delegates more string functions to string object methods, uses the varargs delegation syntax, and stops using stringold. Closes SourceForge patch #100712. | ||||
* | Tim-blessed documentation for math.frexp(). | Fred Drake | 2000-07-03 | 1 | -6/+6 |
| | |||||
* | Checked in a wrong version. | Tim Peters | 2000-07-02 | 1 | -2/+2 |
| | |||||
* | The example_nt directory was old enough to vote. Frank Stajano | Tim Peters | 2000-07-02 | 4 | -419/+152 |
| | | | | | | | | | | | | | | | | pointed out some of the problems he had following the instructions, and I stumbled into the others: MSVC has changed in several respects, Python has changed the directories into which it builds its own Windows outputs, and we grew the unusual scheme of appending "_d" to the names of debug-mode output files. This should all work with VC6 + CVS Python now. Some other Windows geek please confirm! And the less you know, the better <0.5 wink>. Explanations and examples for versions of MSVC before 6, and versions of Python before 2.0b1, have been removed, because they're too different and so confuse life. This last step I OK'ed with Guido first (indeed, 'twas his idea!). | ||||
* | - changed sre.Scanner to use lastindex instead of index. | Fredrik Lundh | 2000-07-02 | 1 | -2/+2 |
| | |||||
* | - experimental: added two new attributes to the match object: | Fredrik Lundh | 2000-07-02 | 4 | -13/+38 |
| | | | | | | | | "lastgroup" is the name of the last matched capturing group, "lastindex" is the index of the same group. if no group was matched, both attributes are set to None. the (?P#) feature will be removed in the next relase. | ||||
* | Repair docs for math.frexp (they were wrong). | Tim Peters | 2000-07-02 | 1 | -1/+3 |
| | | | | Reported on c.l.py by Kirill Simonov. | ||||
* | - actually enabled charset anchors in the engine (still not | Fredrik Lundh | 2000-07-02 | 7 | -20/+95 |
| | | | | | | | | | | used by the code generator) - changed max repeat value in engine (to match earlier array fix) - added experimental "which part matched?" mechanism to sre; see http://hem.passagen.se/eff/2000_07_01_bot-archive.htm#416954 or python-dev for details. | ||||
* | Typo (mine): Garsholm --> Garshol | Fred Drake | 2000-07-02 | 1 | -1/+1 |
| | | | | Noted by Rob Hooft <rob@hooft.net>. | ||||
* | -- use charset bitmaps where appropriate. this gives a 5-10% | Fredrik Lundh | 2000-07-02 | 5 | -63/+182 |
| | | | | | | | | | speedup for some tests, including the python tokenizer. -- added support for an optional charset anchor to the engine (currently unused by the code generator). -- removed workaround for array module bug. | ||||
* | - fixed "{ in any other context" bug | Fredrik Lundh | 2000-07-01 | 2 | -13/+19 |
| | | | | - minor comment touchups in the C module | ||||
* | test(): Removed; regression test is in test.test_winreg2, not testreg. | Fred Drake | 2000-07-01 | 1 | -2/+0 |
| | |||||
* | Typo repair. | Tim Peters | 2000-07-01 | 1 | -1/+1 |
| | |||||
* | Misc fixes and improvements. | Paul Prescod | 2000-07-01 | 1 | -4/+16 |
| | |||||
* | Removed unncessary dependency. | Paul Prescod | 2000-07-01 | 1 | -1/+1 |
| | |||||
* | Fixed test output | Paul Prescod | 2000-07-01 | 1 | -0/+1 |
| | |||||
* | today's SRE update: | Fredrik Lundh | 2000-07-01 | 5 | -8/+15 |
| | | | | | | | | -- changed 1.6 to 2.0 in the file headers -- fixed ISALNUM macro for the unicode locale. this solution isn't perfect, but the best I can do with Python's current unicode database. | ||||
* | others --> other's (possessive) | Fred Drake | 2000-07-01 | 1 | -1/+1 |
| | | | | Usage error noted by Grant Griffin <grant.griffin@iowegian.com>. | ||||
* | Send a "ARTICLE" --> Send an "ARTICLE" | Fred Drake | 2000-07-01 | 1 | -1/+1 |
| | | | | Usage error noted by Grant Griffin <grant.griffin@iowegian.com>. | ||||
* | Added more changes from /F | Andrew M. Kuchling | 2000-07-01 | 1 | -2/+11 |
| | |||||
* | Added minidom tests. | Paul Prescod | 2000-07-01 | 3 | -0/+500 |
| | |||||
* | a minimal test app to show how to build a standalone app with W | Just van Rossum | 2000-07-01 | 1 | -0/+20 |
| | |||||
* | changed repr and str to always convert unicode strings | Fredrik Lundh | 2000-07-01 | 1 | -0/+16 |
| | | | | to 8-bit strings, using the default encoding. | ||||
* | added clearkey = '\033' | Just van Rossum | 2000-07-01 | 1 | -1/+1 |
| | |||||
* | fixed bug in comment matching | Just van Rossum | 2000-07-01 | 1 | -3/+3 |
| | |||||
* | Tightened xml.sax.__init__.py | Paul Prescod | 2000-07-01 | 1 | -5/+5 |
| | |||||
* | Changes from Moshe: | Andrew M. Kuchling | 2000-07-01 | 1 | -19/+19 |
| | | | | | | | | | | | | | - distutils: Windows installers are already working - string methods: .join() seems to be the concensus, so it should probably be docommented - filecmp.py supersedes cmp, cmpcache and dircmp - winreg is completely new: _winreg is an adaptation of what used to be in win32api, and winreg is a Python implementation which adds OO syntax. Perhaps you know that, but the text is misleading. | ||||
* | getatime() returned the mtime instead of the atime. | Guido van Rossum | 2000-07-01 | 2 | -2/+2 |
| | | | | Similar to an old bug in ntpath.py. | ||||
* | Fix bug #314, reported by Craig Allen <cba@mediaone.net>: | Fred Drake | 2000-07-01 | 1 | -1/+1 |
| | | | | | splittype(): Always lower-case the URL scheme; these are supposed to be normalized according to RFC 1738 anyway. | ||||
* | Fix bug #345 reported by David Bolen <db3l@fitlinxx.com>: | Fred Drake | 2000-07-01 | 1 | -1/+1 |
| | | | | | getatime() returned the mtime instead of the atime. Similar to an old bug in posixpath.py. | ||||
* | Martin von Loewis <loewis@informatik.hu-berlin.de>: | Fred Drake | 2000-07-01 | 1 | -1/+1 |
| | | | | Correct typo that caused a well-formedness failure. | ||||
* | Reference cycle fixes | Paul Prescod | 2000-07-01 | 4 | -144/+144 |
| | |||||
* | init_exceptions(): Decref `doc' so it doesn't leak. | Barry Warsaw | 2000-07-01 | 1 | -0/+1 |
| | |||||
* | the usual | Guido van Rossum | 2000-07-01 | 2 | -12/+14 |
| | |||||
* | A bunch of project files were checked in as text files. | Guido van Rossum | 2000-07-01 | 4 | -1991/+1991 |
| | | | | They should all be binary (cvs admin -kv has now been applied). | ||||
* | Add ucnhash (new subproject). | Guido van Rossum | 2000-07-01 | 1 | -1/+1 |
| | |||||
* | The Python include paths were not specified. | Mark Hammond | 2000-07-01 | 1 | -2/+2 |
| | |||||
* | Restore strict checking of socket address values; addresses passed to | Fred Drake | 2000-07-01 | 1 | -15/+21 |
| | | | | | | | the bind(), connect(), and connect_ex() methods must be a single parameter. Originally part of 1.98, reverted in 1.100. | ||||
* | output for openpty test | Guido van Rossum | 2000-07-01 | 1 | -0/+2 |
| | |||||
* | Define a magical symbol and magic include path so it will compile without | Guido van Rossum | 2000-07-01 | 1 | -0/+6 |
| | | | | changes to the bsddb source. | ||||
* | Add ucnhash to the workspace, as a dependency of python20. | Mark Hammond | 2000-07-01 | 1 | -1/+15 |
| | |||||
* | ucnhash now correctly builds for Windows. | Mark Hammond | 2000-07-01 | 1 | -20/+16 |
| | |||||
* | Update all projects so Debug builds use "/Zi" instead of "/ZI", which means ↵ | Mark Hammond | 2000-07-01 | 5 | -1893/+1894 |
| | | | | | | everything should still build under MSVC5 NOTE: All these projects had messed-up line endings (but MSVC didnt mind). Executing a diff with "--ignore-all-space" will show the specific changes, but I made a complete checkin with correct line endiings as it is the correct thing to do! | ||||
* | Repaired two URLs. | Tim Peters | 2000-07-01 | 1 | -6/+6 |
| | |||||
* | Do not build the "longhtml" version for pre-release versions. | Fred Drake | 2000-07-01 | 1 | -1/+5 |
| | |||||
* | The new copyright / license. | Fred Drake | 2000-07-01 | 1 | -25/+33 |
| | |||||
* | Thomas Wouters: Test script for openpty() | Guido van Rossum | 2000-07-01 | 1 | -0/+23 |
| | |||||
* | Jack Jansen, Mac patch: | Guido van Rossum | 2000-07-01 | 2 | -0/+6 |
| | | | | Include limits.h if we have it. |