Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Bug #889500, fix line number on SyntaxWarning for global declarations. | Neal Norwitz | 2005-12-19 | 2 | -7/+12 |
| | |||||
* | Handle a couple of use cases discussed in python-dev w.r.t. calculating the | Barry Warsaw | 2005-12-18 | 2 | -15/+34 |
| | | | | | | | | | | Subversion revision number. First, in an svn export, there will be no .svn directory, so use an in-file $Revision$ keyword string with the keyword chrome stripped off. Also, use $(srcdir) in the Makefile.pre.in to handle the case where Python is build outside the source tree. | ||||
* | Jack said we don't need the Mac/Python/ directory any more. | Neal Norwitz | 2005-12-18 | 2 | -2/+2 |
| | |||||
* | added TerminateProcess support to _subprocess driver | Fredrik Lundh | 2005-12-18 | 1 | -0/+21 |
| | |||||
* | SF#1383115 | Fredrik Lundh | 2005-12-18 | 1 | -0/+5 |
| | | | | added refcount information for PyObject_Call | ||||
* | fixed compilation with an ordinary C89 compiler | Fredrik Lundh | 2005-12-18 | 2 | -4/+3 |
| | |||||
* | Fixed None reference leaks in TreeBuilder class (reported by Neal | Fredrik Lundh | 2005-12-18 | 1 | -0/+4 |
| | | | | Norwitz) | ||||
* | Check return result for error | Neal Norwitz | 2005-12-18 | 1 | -0/+2 |
| | |||||
* | Fix Armin's bug 1333982. He found it, he didn't created it :-) | Neal Norwitz | 2005-12-18 | 2 | -9/+41 |
| | | | | | | | | | | This code generated a C assertion: assert 1, ([s for s in x] + [s for s in x]) pass assert was completely broken, it needed to use the proper block. compiler_use_block() is now no longer used, so remove it. | ||||
* | Fix compiler warnings | Neal Norwitz | 2005-12-18 | 1 | -2/+2 |
| | |||||
* | Handle more error conditions with SystemError | Neal Norwitz | 2005-12-18 | 1 | -8/+22 |
| | |||||
* | Fix Bug #1378022, UTF-8 files with a leading BOM crashed the interpreter. | Neal Norwitz | 2005-12-18 | 5 | -2/+19 |
| | | | | Needs backport. | ||||
* | Get float() to be more portable across platforms. Disable hex strings. | Neal Norwitz | 2005-12-18 | 3 | -50/+32 |
| | |||||
* | Set MemoryError when alloc fails | Neal Norwitz | 2005-12-18 | 1 | -3/+11 |
| | |||||
* | Wrap long lines in the grammar | Neal Norwitz | 2005-12-18 | 2 | -25/+40 |
| | |||||
* | Fix _sys_version() so it works with the new buildno, not sure if it is ↵ | Neal Norwitz | 2005-12-18 | 1 | -2/+1 |
| | | | | correct. test_platform passes | ||||
* | SF Patch #1365916, mmap fails on AMD64 | Neal Norwitz | 2005-12-18 | 3 | -12/+30 |
| | | | | Fix some 64-bit issues due to mismatch format characters w/actual data types | ||||
* | Cleanup a bit and make things more consistent. | Neal Norwitz | 2005-12-18 | 2 | -142/+87 |
| | | | | | Don't double check for NULLs and don't initialize if not necessary. No functional changes. | ||||
* | Add versionadded info | Neal Norwitz | 2005-12-18 | 2 | -0/+2 |
| | |||||
* | Expose Subversion revision number (calculated via "svnversion .") to Python. | Barry Warsaw | 2005-12-18 | 7 | -4/+32 |
| | | | | | | | Add C API function Py_GetBuildNumber(), add it to the interactive prompt banner (i.e. Py_GetBuildInfo()), and add it as the sys.build_number attribute. The build number is a string instead of an int because it may contain a trailing 'M' if there are local modifications. | ||||
* | Doc for PEP 341, needs improvement | Neal Norwitz | 2005-12-17 | 2 | -20/+22 |
| | |||||
* | Fix leftover word. | Georg Brandl | 2005-12-17 | 1 | -1/+1 |
| | |||||
* | Added PEP 341 to NEWS. | Georg Brandl | 2005-12-17 | 1 | -0/+4 |
| | | | | | We still need a change in the reference manual to reflect the new try statement. | ||||
* | SF patch #1355913, PEP 341 - Unification of try/except and try/finally | Neal Norwitz | 2005-12-17 | 5 | -57/+263 |
| | | | | Modified since ast-arenas was implemented. | ||||
* | 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 |
| |