Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Update for newest Sphinx. | Georg Brandl | 2008-03-09 | 1 | -3/+4 |
| | |||||
* | #2249: document assertTrue and assertFalse. | Georg Brandl | 2008-03-09 | 1 | -0/+2 |
| | |||||
* | Well that was dumb. platform.python_implementation returns a function, not a | Jeffrey Yasskin | 2008-03-08 | 1 | -2/+3 |
| | | | | string. | ||||
* | Fix pybench for pythons < 2.6, tested back to 2.3. | Jeffrey Yasskin | 2008-03-08 | 1 | -2/+2 |
| | |||||
* | Add tests for with and finally performance to pybench. | Jeffrey Yasskin | 2008-03-08 | 2 | -0/+194 |
| | |||||
* | Issue 1106316. post_mortem()'s parameter, traceback, is now | Facundo Batista | 2008-03-08 | 3 | -3/+20 |
| | | | | | optional: it defaults to the traceback of the exception that is currently being handled. | ||||
* | #1533486: fix types in refcount intro. | Georg Brandl | 2008-03-08 | 1 | -1/+1 |
| | |||||
* | Add new name for Mandrake: Mandriva. | Marc-André Lemburg | 2008-03-08 | 1 | -3/+4 |
| | |||||
* | #2253: fix continue vs. finally docs. | Georg Brandl | 2008-03-08 | 1 | -6/+5 |
| | |||||
* | Grammar fix | Andrew M. Kuchling | 2008-03-07 | 1 | -1/+1 |
| | |||||
* | Speed up with statements by storing the __exit__ method on the stack instead ↵ | Nick Coghlan | 2008-03-07 | 6 | -55/+77 |
| | | | | of in a temp variable (bumps the magic number for pyc files) | ||||
* | Progress on issue #1193577 by adding a polling .shutdown() method to | Jeffrey Yasskin | 2008-03-07 | 4 | -86/+118 |
| | | | | | | SocketServers. The core of the patch was written by Pedro Werneck, but any bugs are mine. I've also rearranged the code for timeouts in order to avoid interfering with the shutdown poll. | ||||
* | Tweak recipes and tests | Raymond Hettinger | 2008-03-07 | 2 | -13/+36 |
| | |||||
* | Issue 2246: itertools grouper object did not participate in GC (should be ↵ | Raymond Hettinger | 2008-03-06 | 2 | -5/+22 |
| | | | | backported). | ||||
* | More tests. | Raymond Hettinger | 2008-03-06 | 1 | -6/+144 |
| | |||||
* | Update db-4.4.20 build procedure. | Martin v. Löwis | 2008-03-06 | 1 | -4/+9 |
| | |||||
* | Rely on x64 platform configuration when building _bsddb on AMD64. | Martin v. Löwis | 2008-03-06 | 2 | -9/+11 |
| | |||||
* | Bug #2220: handle rlcompleter attribute match failure more gracefully. | Georg Brandl | 2008-03-06 | 1 | -0/+2 |
| | |||||
* | #2220: handle matching failure more gracefully. | Georg Brandl | 2008-03-06 | 1 | -1/+1 |
| | |||||
* | #2225: return nonzero status code from py_compile if not all files could be ↵ | Georg Brandl | 2008-03-06 | 3 | -3/+15 |
| | | | | compiled. | ||||
* | Add missing NEWS entry for r61263. | Georg Brandl | 2008-03-06 | 1 | -0/+3 |
| | |||||
* | Add isinstance/issubclass to tutorial. | Georg Brandl | 2008-03-06 | 1 | -0/+16 |
| | |||||
* | Little clarification of assignments. | Georg Brandl | 2008-03-06 | 1 | -8/+11 |
| | |||||
* | Expand on re.split behavior with captured expressions. | Georg Brandl | 2008-03-06 | 1 | -1/+13 |
| | |||||
* | Patch #2232: os.tmpfile might fail on Windows if the user has no | Martin v. Löwis | 2008-03-06 | 2 | -0/+44 |
| | | | | | permission to create files in the root directory. Will backport to 2.5. | ||||
* | #1725737: ignore other VC directories other than CVS and SVN's too. | Georg Brandl | 2008-03-06 | 2 | -5/+7 |
| | |||||
* | Add two items | Andrew M. Kuchling | 2008-03-06 | 1 | -4/+12 |
| | |||||
* | Add examples. | Raymond Hettinger | 2008-03-06 | 1 | -23/+29 |
| | |||||
* | cd PCbuild only after deleting all pyc files. | Martin v. Löwis | 2008-03-05 | 1 | -1/+1 |
| | |||||
* | Small code cleanup. | Raymond Hettinger | 2008-03-05 | 1 | -4/+2 |
| | |||||
* | C implementation of itertools.permutations(). | Raymond Hettinger | 2008-03-05 | 3 | -14/+293 |
| | |||||
* | #2239: PYTHONPATH delimiter is os.pathsep. | Georg Brandl | 2008-03-05 | 1 | -1/+2 |
| | |||||
* | Elaborate on the role of the altinstall target when installing multiple | Skip Montanaro | 2008-03-05 | 1 | -8/+21 |
| | | | | versions. | ||||
* | Issue 1872: Changed the struct module typecode from 't' to '?', for | Thomas Heller | 2008-03-05 | 8 | -29/+41 |
| | | | | compatibility with PEP3118. | ||||
* | News entry for yesterdays commit. | Thomas Heller | 2008-03-05 | 1 | -0/+10 |
| | |||||
* | Fix some rst. | Georg Brandl | 2008-03-05 | 1 | -7/+7 |
| | |||||
* | Fix test_socketserver on Windows after r61099 added several signal.alarm() | Jeffrey Yasskin | 2008-03-05 | 1 | -3/+7 |
| | | | | | | calls (which don't exist on non-Unix platforms). Thanks to Trent Nelson for the report and patch. | ||||
* | test_smtplib sometimes reports leaks too, suppress it | Neal Norwitz | 2008-03-05 | 1 | -1/+1 |
| | |||||
* | Use -u urlfetch to run more tests | Neal Norwitz | 2008-03-05 | 1 | -3/+3 |
| | |||||
* | Tabs -> spaces | Neal Norwitz | 2008-03-05 | 1 | -13/+13 |
| | |||||
* | Make the timeout longer to give slow machines a chance to pass the test | Neal Norwitz | 2008-03-05 | 1 | -1/+1 |
| | | | | | | before timing out. This doesn't change the duration of the test under normal circumstances. This is targetted at fixing the spurious failures on the FreeBSD buildbot primarily. | ||||
* | Catch OSError when trying to remove a file in case removal fails. This | Neal Norwitz | 2008-03-05 | 1 | -2/+5 |
| | | | | should prevent a failure in tearDown masking any real test failure. | ||||
* | Get this test to pass even when there is no sound card in the system. | Neal Norwitz | 2008-03-05 | 1 | -4/+16 |
| | | | | Patch from Trent Nelson. (I can't test this.) | ||||
* | Remove the files/dirs after closing the DB so the tests work on Windows. | Neal Norwitz | 2008-03-05 | 2 | -6/+3 |
| | | | | Patch from Trent Nelson. Also simplified removing a file by using test_support. | ||||
* | 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. |