Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Do not chdir when running test_xml_etree, and enhance the findfile helper. | Florent Xicluna | 2010-03-13 | 4 | -27/+12 |
| | |||||
* | Move the xml test data to their own directory. | Florent Xicluna | 2010-03-13 | 10 | -31/+45 |
| | |||||
* | Bump externals versions for doc build. | Georg Brandl | 2010-03-13 | 3 | -13/+15 |
| | |||||
* | Add Makefile targets for automatic doc build. Add script that will be used ↵ | Georg Brandl | 2010-03-13 | 2 | -10/+112 |
| | | | | for daily build. | ||||
* | Silence compiler warnings. | Ezio Melotti | 2010-03-13 | 1 | -8/+8 |
| | |||||
* | sqlite3: Fix a segfault on calling a connection with something else than a | Victor Stinner | 2010-03-13 | 2 | -7/+18 |
| | | | | | | | | string. Initialize all attributes to be able to call the statement destructor on error. Avoid also a duplicate connection in some tests: setUp() does already open a connection (":memory:"). | ||||
* | #8011: use exc.tb_lineno instead of traceback.tb_lineno() and pep8ify ↵ | Ezio Melotti | 2010-03-13 | 1 | -9/+9 |
| | | | | variable names. | ||||
* | fix broken links | Ezio Melotti | 2010-03-13 | 1 | -2/+3 |
| | |||||
* | Issue #7818: set().test_c_api() doesn't expect a set('abc'), modify the set. | Victor Stinner | 2010-03-13 | 2 | -2/+16 |
| | |||||
* | Deactivate automatic upload of the docs to python.org, they will now be ↵ | Georg Brandl | 2010-03-12 | 1 | -5/+6 |
| | | | | built by a job on that machine. | ||||
* | NEWS: issue #7774 is related to Library (sys), not Core and Builtins | Victor Stinner | 2010-03-12 | 1 | -4/+4 |
| | |||||
* | Fix warnings from "make check". | Georg Brandl | 2010-03-12 | 9 | -31/+31 |
| | |||||
* | Get rid of backticks. | Georg Brandl | 2010-03-12 | 1 | -1/+1 |
| | |||||
* | Issue #8117: Updated NEWS entry and added to logging documentation. | Vinay Sajip | 2010-03-12 | 2 | -1/+9 |
| | |||||
* | Issue #8117: logging: Improved algorithm for computing initial rollover time. | Vinay Sajip | 2010-03-12 | 2 | -2/+8 |
| | |||||
* | remove shebang line from non-executable test | Benjamin Peterson | 2010-03-11 | 1 | -2/+0 |
| | |||||
* | normalize shebang lines to #!/usr/bin/env python | Benjamin Peterson | 2010-03-11 | 26 | -26/+26 |
| | |||||
* | revert r78842 cgi.py change | Benjamin Peterson | 2010-03-11 | 1 | -1/+1 |
| | |||||
* | use proper shebang lines | Benjamin Peterson | 2010-03-11 | 2 | -2/+2 |
| | |||||
* | remove executable property from doc files | Benjamin Peterson | 2010-03-11 | 2 | -0/+0 |
| | |||||
* | Fix repr of tree Element on windows. | Florent Xicluna | 2010-03-11 | 2 | -10/+12 |
| | |||||
* | Issue #6472: The xml.etree package is updated to ElementTree 1.3. The ↵ | Florent Xicluna | 2010-03-11 | 11 | -1180/+3296 |
| | | | | cElementTree module is updated too. | ||||
* | Another fix to test_executable() of test_sys: set the current working to avoid | Victor Stinner | 2010-03-11 | 1 | -1/+4 |
| | | | | the #7774 bug. | ||||
* | Fix test_executable introduce in previous commit (r78835): Windows is able to | Victor Stinner | 2010-03-11 | 1 | -2/+2 |
| | | | | | retrieve the absolute Python path even if argv[0] has been set to a non existent program name. | ||||
* | Issue #7774: Set sys.executable to an empty string if argv[0] has been | Victor Stinner | 2010-03-11 | 4 | -2/+22 |
| | | | | | | | | set to an non existent program name and Python is unable to retrieve the real program name. Fix also sysconfig: if sys.executable is an empty string, use the current working directory. | ||||
* | Revert r78830: realpath() should really be applied to sys.executable. | Florent Xicluna | 2010-03-11 | 2 | -4/+3 |
| | |||||
* | It is not optimal to test sys.stderr on a debug build. | Florent Xicluna | 2010-03-11 | 1 | -2/+1 |
| | |||||
* | Fix the test_subprocess failure when sys.executable is meaningless: '' or a ↵ | Florent Xicluna | 2010-03-11 | 2 | -3/+4 |
| | | | | | | directory. It does not fix #7774. | ||||
* | Issue #7880: Fix sysconfig when the python executable is a symbolic link. | Florent Xicluna | 2010-03-10 | 3 | -7/+27 |
| | |||||
* | ooops, fix error message in execusercustomize() | Victor Stinner | 2010-03-10 | 1 | -1/+1 |
| | | | | Copy/paste failure :-) | ||||
* | Issue #3137: Don't ignore errors at startup, especially a keyboard interrupt | Victor Stinner | 2010-03-10 | 6 | -23/+48 |
| | | | | | | (SIGINT). If an error occurs while importing the site module, the error is printed and Python exits. Initialize the GIL before importing the site module. | ||||
* | fix ugly configure output (follow up to #6943) | Benjamin Peterson | 2010-03-09 | 2 | -28/+30 |
| | |||||
* | handle an empty OPT variable correctly #8100 | Benjamin Peterson | 2010-03-09 | 2 | -2/+2 |
| | |||||
* | #7772: Fix test_py3kwarn. Now the test suite could pass with "-3" flag. | Florent Xicluna | 2010-03-09 | 2 | -18/+33 |
| | |||||
* | Improve code clarity a bit. | Raymond Hettinger | 2010-03-09 | 1 | -5/+10 |
| | |||||
* | Have links in OrderedDicts be native Python lists instead | Raymond Hettinger | 2010-03-09 | 1 | -28/+19 |
| | | | | | | of a custom class with __slots__. This simplifies the code a bit, reduces memory consumption, improves speed, and eliminates the need for weak reference proxies. | ||||
* | Add nicer docstrings to namedtuples(). | Raymond Hettinger | 2010-03-09 | 2 | -3/+9 |
| | | | | Provides better tooltips and looks better in help(). | ||||
* | Improve the basic example. | Raymond Hettinger | 2010-03-09 | 1 | -3/+7 |
| | | | | | * Show both the decorator and regular form for assertRaises() * Use assertTrue() instead of assertIn() to teach useful minimal subset of the API | ||||
* | set svn:eol-style on various files | Benjamin Peterson | 2010-03-08 | 3 | -456/+454 |
| | |||||
* | Fix typo. | Georg Brandl | 2010-03-08 | 1 | -1/+1 |
| | |||||
* | #7624: Fix isinstance(foo(), collections.Callable) for old-style classes. | Florent Xicluna | 2010-03-08 | 4 | -12/+64 |
| | |||||
* | Move some tests from test_macpath to test_genericpath.CommonTest | Florent Xicluna | 2010-03-08 | 2 | -10/+12 |
| | |||||
* | Add various items | Andrew M. Kuchling | 2010-03-08 | 1 | -0/+13 |
| | |||||
* | On finalize, don't try to join not started process. | Florent Xicluna | 2010-03-08 | 1 | -5/+3 |
| | |||||
* | Replace the stderr logging with assertNotEqual(returncode, 0). | Florent Xicluna | 2010-03-08 | 1 | -4/+2 |
| | |||||
* | Fix syntax: "rc != None" -> "rc is not None" | Florent Xicluna | 2010-03-08 | 2 | -2/+2 |
| | |||||
* | Don't fail on a debug() statement, if the worker PID is (still) None. | Florent Xicluna | 2010-03-08 | 1 | -1/+1 |
| | |||||
* | Fix for issue 8066: readline should not be linked against libedit when the | Ronald Oussoren | 2010-03-08 | 1 | -1/+4 |
| | | | | deployment target is 10.4, libedit on 10.4 is too broken. | ||||
* | remove svn:executable from scripts without a shebang line | Benjamin Peterson | 2010-03-08 | 50 | -0/+0 |
| | |||||
* | Issue #7143: get_payload used to strip any trailing newline from a | R. David Murray | 2010-03-08 | 7 | -9/+32 |
| | | | | | | | | | | base64 transfer-encoded payload *after* decoding it; it no longer does. email had a special method in utils, _bdecode, specifically to do this, so it must have served a purpose at some point, yet it is clearly wrong per RFC. Fixed with Barry's approval, but no backport. Email package minor version number is bumped, now version 4.0.1. Patch by Joaquin Cuenca Abela. |