Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge from ast-arena. This reduces the code in Python/ast.c by ~300 lines, | Neal Norwitz | 2005-12-17 | 16 | -1242/+704 |
| | | | | simplifies a lot of error handling code, and fixes many memory leaks. | ||||
* | Add Michael Urman for work on SF patch #1365916 | Neal Norwitz | 2005-12-17 | 1 | -0/+1 |
| | |||||
* | Bug #1373197: note that os.makedirs does not work with '..' | Georg Brandl | 2005-12-17 | 1 | -0/+2 |
| | |||||
* | Bug #1343671: clarify docs for os.removedirs | Georg Brandl | 2005-12-17 | 1 | -5/+9 |
| | |||||
* | Bug #1106572: clarify os.makedirs docs wrt umask | Georg Brandl | 2005-12-17 | 1 | -1/+2 |
| | |||||
* | Fixed reference counting error when using the entity dictionary | Fredrik Lundh | 2005-12-17 | 1 | -1/+0 |
| | | | | | (reported by Chris Olds). Backported from the 1.0.6 development branch. | ||||
* | Bug #1379994: Fix *unicode_escape codecs to encode r'\' as r'\\' | Hye-Shik Chang | 2005-12-17 | 3 | -13/+20 |
| | | | | just like string codecs. | ||||
* | More text about the pragmatic significance of hashlib. | Tim Peters | 2005-12-16 | 1 | -4/+13 |
| | |||||
* | Add the missing mention of the hashlib module. | Brett Cannon | 2005-12-16 | 1 | -0/+3 |
| | |||||
* | added encoding tests to ElementTree/cElementTree tests | Fredrik Lundh | 2005-12-16 | 2 | -15/+31 |
| | |||||
* | updating to cElementTree 1.0.5 (step 3 of 3) | Fredrik Lundh | 2005-12-16 | 1 | -4/+7 |
| | |||||
* | updating to cElementTree 1.0.5 (step 2 of 3) | Fredrik Lundh | 2005-12-16 | 1 | -0/+2766 |
| | |||||
* | updating to cElementTree 1.0.5 | Fredrik Lundh | 2005-12-16 | 1 | -2723/+0 |
| | |||||
* | Patch #1360443: Make SimpleHTTPServer display unencoded directory names. | Georg Brandl | 2005-12-16 | 1 | -2/+3 |
| | |||||
* | Patch #1377848: typo in pyexpat docs | Georg Brandl | 2005-12-16 | 1 | -1/+1 |
| | |||||
* | Patch #1376914: traceback.format_exc() has no "file" argument | Georg Brandl | 2005-12-16 | 1 | -1/+1 |
| | |||||
* | Set props on _elementtree project file as per pyexpat.vcproj. | Trent Mick | 2005-12-15 | 1 | -335/+335 |
| | |||||
* | Add build support for _elementtree on Windows. | Trent Mick | 2005-12-15 | 3 | -0/+346 |
| | |||||
* | Bug #1378455: a problem of urllib using open_local_file | Georg Brandl | 2005-12-15 | 1 | -0/+2 |
| | |||||
* | Remove reference to the "t" open() mode as it is platform dependent. | Georg Brandl | 2005-12-15 | 1 | -1/+1 |
| | |||||
* | Add two tests for the script interface. | Walter Dörwald | 2005-12-15 | 1 | -5/+19 |
| | |||||
* | added cElementTree tests | Fredrik Lundh | 2005-12-15 | 2 | -0/+204 |
| | |||||
* | Fix an int/long mismatch identified here: | Neal Norwitz | 2005-12-15 | 1 | -1/+2 |
| | | | | | | | | http://www.tortall.net/mu/blog/2005/12/01 Pointed out from SF #1365916. Backport candidate. | ||||
* | Revert r41662 and the part of 41552 that originally caused the problem | Neal Norwitz | 2005-12-15 | 6 | -104/+1 |
| | | | | | (calling ftell(stdin) doesn't seem defined). So we won't test errors from ftell unless we can do it portably. | ||||
* | If quopri uses the implementations from binascii do the tests a second time | Walter Dörwald | 2005-12-14 | 1 | -10/+35 |
| | | | | | using the Python implementations of the functions. This imcreases code coverage and makes sure that both implementations do the same thing. | ||||
* | added PSG licensing blurb | Fredrik Lundh | 2005-12-14 | 1 | -0/+3 |
| | |||||
* | added PSF licensing blurbs to relevant files | Fredrik Lundh | 2005-12-14 | 5 | -0/+15 |
| | |||||
* | fixed eol-style | Fredrik Lundh | 2005-12-14 | 0 | -0/+0 |
| | |||||
* | renamed to _elementtree (for Python 2.5) | Fredrik Lundh | 2005-12-14 | 1 | -4/+4 |
| | |||||
* | copied cElementTree 1.0.4 to Modules | Fredrik Lundh | 2005-12-14 | 1 | -0/+2720 |
| | |||||
* | added cElementTree/_elementtree build stuff and wrapper module | Fredrik Lundh | 2005-12-14 | 2 | -0/+14 |
| | |||||
* | Subversion settings: | Armin Rigo | 2005-12-14 | 5 | -1960/+1960 |
| | | | | | | | | | svn:ignore *.pyc *.pyo svn:eol-style native The .py files appear to have been checked in with Windows or inconsistent line endings. The current check-in disrupts the 'svn blame', but hopefully it is irrelevant for freshly imported code. | ||||
* | Added the 'ULL' prefix to the unsigned long long literal constants. | Armin Rigo | 2005-12-14 | 1 | -99/+99 |
| | | | | Supresses numerous pages of compiler warnings. | ||||
* | When regenerating files like Python-ast.h, take care that the generated | Armin Rigo | 2005-12-14 | 1 | -3/+2 |
| | | | | | | | comment based on 'sys.args[0]' does not depend on the path. For Python builds from a remote directory ("/path/to/configure; make") the previous logic used to include the "/path/to" portion in Python-ast.h. Then svn would consider this file to be locally modified. | ||||
* | fixed installation of xmlcore libraries (including xmlcore.etree) | Fredrik Lundh | 2005-12-14 | 1 | -1/+1 |
| | |||||
* | - remove leftover directory | Fred Drake | 2005-12-14 | 1 | -0/+20 |
| | | | | - add file I forgot to add in previous commit | ||||
* | move the xml package implementation to xmlcore, and adjust the tests to | Fred Drake | 2005-12-14 | 24 | -194/+196 |
| | | | | | test that package, not the xmlcore/PyXML switcheroo fiasco in the xml module/package | ||||
* | moved magic into structure (mainly to simplify the client code) | Fredrik Lundh | 2005-12-13 | 2 | -8/+10 |
| | | | | added missing API hooks | ||||
* | renamed dispatch -> capi to match other CAPI implementations | Fredrik Lundh | 2005-12-13 | 2 | -27/+27 |
| | | | | (e.g. cStringIO, ucnhash, etc) | ||||
* | added cobject-based expat dispatch mechanism to pyexpat | Fredrik Lundh | 2005-12-13 | 2 | -0/+76 |
| | |||||
* | Fix test not to fail on FreeBSD. Directories work also as data | Hye-Shik Chang | 2005-12-13 | 1 | -0/+4 |
| | | | | files on the platform. | ||||
* | Add a workaround for file.ftell() to raise IOError for ttys. | Hye-Shik Chang | 2005-12-13 | 5 | -1/+97 |
| | | | | | ftell(3) on BSD doesn't set errno even for ttys and returns useless values. | ||||
* | From a suggestion on c.l.py: modernize the introduction to the tutorial. | Andrew M. Kuchling | 2005-12-13 | 1 | -32/+40 |
| | | | | | | | | * Remove talk of shell scripting, replacing it by some more current examples * Mention C++ and Java as well as C Raymond H., please feel free to rewrite or revert as you see fit. If the changes are OK, they could be backported to the 2.4-maint branch. | ||||
* | r1077@spiff: Fredrik | 2005-12-12 22:58:44 +0100 | Fredrik Lundh | 2005-12-12 | 1 | -0/+1 |
| | | | | | make sure xml.etree can be used even if PyXML is present (solution proposed by Philip J. Eby) | ||||
* | r1076@spiff: Fredrik | 2005-12-12 22:32:28 +0100 | Fredrik Lundh | 2005-12-12 | 2 | -0/+28 |
| | | | | added xml.etree documentation stub | ||||
* | skip NIS entries, empty entries, etc | Fredrik Lundh | 2005-12-12 | 2 | -2/+4 |
| | |||||
* | skip nis entries, if not filtered out by getpwall itself | Fredrik Lundh | 2005-12-12 | 1 | -0/+2 |
| | |||||
* | added xml.etree test (enough of the ElementTree selftest to | Fredrik Lundh | 2005-12-12 | 1 | -0/+339 |
| | | | | make sure that all included components work) | ||||
* | r1068@spiff: Fredrik | 2005-12-12 19:50:30 +0100 | Fredrik Lundh | 2005-12-12 | 4 | -2/+19 |
| | | | | assorted xml.etree tweaks | ||||
* | added ElementTree core components to xml.etree | Fredrik Lundh | 2005-12-12 | 4 | -0/+1621 |
| |