Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue#2238: some syntax errors from *args or **kwargs expressions | Amaury Forgeot d'Arc | 2008-03-05 | 3 | -0/+14 |
| | | | | | | | | | | | | | | would give bogus error messages, because of untested exceptions:: >>> f(**g(1=2)) XXX undetected error Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: 'int' object is not iterable instead of the expected SyntaxError: keyword can't be an expression Will backport. | ||||
* | Add more items; add fragmentary notes | Andrew M. Kuchling | 2008-03-05 | 1 | -14/+166 |
| | |||||
* | Fix refleak in chain(). | Raymond Hettinger | 2008-03-04 | 1 | -1/+1 |
| | |||||
* | fix typo | Fred Drake | 2008-03-04 | 1 | -1/+1 |
| | |||||
* | Try to fix the build for PY_LINUX. | Thomas Heller | 2008-03-04 | 1 | -0/+1 |
| | |||||
* | Merged changes from libffi3-branch. | Thomas Heller | 2008-03-04 | 100 | -3575/+38655 |
| | | | | | | | | | The bundled libffi copy is now in sync with the recently released libffi3.0.4 version, apart from some small changes to Modules/_ctypes/libffi/configure.ac. I gave up on using libffi3 files on os x. Instead, static configuration with files from pyobjc is used. | ||||
* | Close the file before trying to remove the directory so it works on Windows. | Neal Norwitz | 2008-03-04 | 1 | -1/+2 |
| | | | | As reported by Trent Nelson on python-dev. | ||||
* | #2230: document that PyArg_* leaves addresses alone on error. | Georg Brandl | 2008-03-04 | 1 | -4/+8 |
| | |||||
* | Fix some patch attributions. | Georg Brandl | 2008-03-04 | 1 | -2/+4 |
| | |||||
* | Beef-up docs and tests for itertools. Fix-up end-case for product(). | Raymond Hettinger | 2008-03-04 | 3 | -19/+145 |
| | |||||
* | Thesis night results: add various items | Andrew M. Kuchling | 2008-03-04 | 1 | -12/+162 |
| | |||||
* | Add versionadded tags | Andrew M. Kuchling | 2008-03-04 | 1 | -0/+4 |
| | |||||
* | Typo fix | Andrew M. Kuchling | 2008-03-04 | 1 | -1/+1 |
| | |||||
* | Fix sentence fragment | Andrew M. Kuchling | 2008-03-04 | 1 | -2/+2 |
| | |||||
* | Grammar fix; markup fix | Andrew M. Kuchling | 2008-03-04 | 1 | -2/+2 |
| | |||||
* | Typo fix | Andrew M. Kuchling | 2008-03-04 | 1 | -1/+1 |
| | |||||
* | Issue 2226: Callable checked for the wrong abstract method. | Raymond Hettinger | 2008-03-03 | 1 | -1/+1 |
| | |||||
* | Remove dependency on itertools -- a simple genexp suffices. | Raymond Hettinger | 2008-03-03 | 1 | -2/+2 |
| | |||||
* | Expand a bit on genexp scopes. | Georg Brandl | 2008-03-03 | 1 | -8/+9 |
| | |||||
* | Actually import itertools. | Georg Brandl | 2008-03-03 | 1 | -0/+1 |
| | |||||
* | 15 -> 16, the 2nd | Georg Brandl | 2008-03-03 | 1 | -1/+1 |
| | |||||
* | There are now sixteen isfoo functions. | Georg Brandl | 2008-03-03 | 1 | -1/+1 |
| | |||||
* | 15 -> 16 | Christian Heimes | 2008-03-03 | 1 | -2/+2 |
| | |||||
* | Since abc._Abstract was replaces by a new type flags the regression test ↵ | Christian Heimes | 2008-03-03 | 5 | -4/+24 |
| | | | | suite fails. I've added a new function inspect.isabstract(). Is the mmethod fine or should I check if object is a instance of type or subclass of object, too? | ||||
* | Initialized merge tracking via "svnmerge" with revisions "1-60195" from | Christian Heimes | 2008-03-03 | 0 | -0/+0 |
| | | | | svn+ssh://pythondev@svn.python.org/python/branches/trunk-math | ||||
* | Only DECREF if ret != NULL | Neal Norwitz | 2008-03-03 | 1 | -1/+1 |
| | |||||
* | Add test_main() functions to various tests where it was simple to do. Done so | Brett Cannon | 2008-03-03 | 9 | -36/+63 |
| | | | | | that regrtest can execute the test_main() directly instead of relying on import side-effects. | ||||
* | Add a note in the main test class' docstring that the order of execution of the | Brett Cannon | 2008-03-03 | 1 | -2/+9 |
| | | | | tests is important. | ||||
* | Add a note in the main test class' docstring that the order of execution of the | Brett Cannon | 2008-03-03 | 1 | -0/+4 |
| | | | | tests is important. | ||||
* | Move test_largefile over to using 'with' statements for open files. | Brett Cannon | 2008-03-03 | 1 | -28/+18 |
| | | | | Also rename the driver function to test_main() instead of main_test(). | ||||
* | compile.c always emits END_FINALLY after WITH_CLEANUP, so predict that in | Jeffrey Yasskin | 2008-03-03 | 1 | -0/+2 |
| | | | | ceval.c. This is worth about a .03-.04us speedup on a simple with block. | ||||
* | Refactor test_logging to use unittest. This should finally solve the flakiness | Brett Cannon | 2008-03-03 | 3 | -2164/+753 |
| | | | | | | issues. Thanks to Antoine Pitrou for the patch. | ||||
* | Modify import of test_support so that the code can also be used with a | Gregory P. Smith | 2008-03-02 | 15 | -15/+73 |
| | | | | | stand alone distribution of bsddb that includes its own small copy of test_support for the needed functionality on older pythons. | ||||
* | Fix factual error. | Georg Brandl | 2008-03-02 | 1 | -5/+6 |
| | |||||
* | Make clear that the constants are strings. | Georg Brandl | 2008-03-02 | 1 | -15/+15 |
| | |||||
* | Added note about update of sqlite3 module. | Gerhard Häring | 2008-03-02 | 1 | -0/+2 |
| | |||||
* | Made sqlite3 module's regression tests work with SQLite versions that don't | Gerhard Häring | 2008-03-02 | 1 | -2/+3 |
| | | | | support "create table if not exists", yet. | ||||
* | Handle 0-tuples which can be singletons. | Raymond Hettinger | 2008-03-02 | 1 | -1/+1 |
| | |||||
* | Simplify code for itertools.product(). | Raymond Hettinger | 2008-03-02 | 1 | -13/+2 |
| | |||||
* | Tighten example code. | Raymond Hettinger | 2008-03-02 | 1 | -1/+1 |
| | |||||
* | Finish-up docs for combinations() and permutations() in itertools. | Raymond Hettinger | 2008-03-02 | 1 | -10/+30 |
| | |||||
* | New default basename for HTML help files. | Georg Brandl | 2008-03-02 | 1 | -1/+1 |
| | |||||
* | Make patchlevel print out the release if called as a script. | Georg Brandl | 2008-03-02 | 1 | -0/+3 |
| | |||||
* | Update year. | Georg Brandl | 2008-03-02 | 2 | -2/+2 |
| | |||||
* | It's 2.6 now. | Georg Brandl | 2008-03-02 | 1 | -1/+1 |
| | |||||
* | Set things up for 2.6a2. | Barry Warsaw | 2008-03-01 | 2 | -1/+7 |
| | |||||
* | Tagging 2.6a1... again! | Barry Warsaw | 2008-03-01 | 1 | -0/+1 |
| | |||||
* | More copyright year and version number bumpsv2.6a1 | Barry Warsaw | 2008-03-01 | 5 | -6/+7 |
| | |||||
* | Give IDLE a release date | Barry Warsaw | 2008-03-01 | 1 | -1/+1 |
| | |||||
* | Untagging. | Barry Warsaw | 2008-03-01 | 1 | -0/+1 |
| |