Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Revert previous commit. | Hirokazu Yamamoto | 2010-09-20 | 1 | -16/+1 |
| | |||||
* | logging: hasHandlers additions documented. | Vinay Sajip | 2010-09-20 | 2 | -0/+14 |
| | |||||
* | Reverted changes which were inadvertently committed. | Vinay Sajip | 2010-09-20 | 2 | -17/+12 |
| | |||||
* | logging: added hasHandlers() to LoggerAdapter. | Vinay Sajip | 2010-09-20 | 3 | -12/+23 |
| | |||||
* | Windows7 buildbot debug trial. (Probably impossible) | Hirokazu Yamamoto | 2010-09-20 | 1 | -1/+16 |
| | |||||
* | logging: Add hasHandlers() method to Logger. | Vinay Sajip | 2010-09-20 | 2 | -5/+28 |
| | |||||
* | Mention % as string formatting. | Georg Brandl | 2010-09-20 | 1 | -0/+3 |
| | |||||
* | Fix typo. | Georg Brandl | 2010-09-20 | 1 | -1/+1 |
| | |||||
* | issue 9786 Native TLS support for pthreads | Kristján Valur Jónsson | 2010-09-20 | 3 | -1/+49 |
| | | | | PyThread_create_key now has a failure mode that the applicatino can detect. | ||||
* | Try a more robust implementation of _kill_process | Antoine Pitrou | 2010-09-20 | 1 | -20/+14 |
| | |||||
* | Try to fix buildbot failure (#9902) | Antoine Pitrou | 2010-09-20 | 1 | -0/+4 |
| | |||||
* | Make error more explicit in test_finalize_with_trace | Antoine Pitrou | 2010-09-19 | 1 | -3/+8 |
| | |||||
* | Try to make signal-sending tests in test_subprocess more robust on slow machines | Antoine Pitrou | 2010-09-19 | 1 | -2/+4 |
| | |||||
* | Try to fix test_subprocess on "x86 debian parallel 3.x" buildbot | Antoine Pitrou | 2010-09-19 | 1 | -4/+4 |
| | |||||
* | PyImport_Import was using the old import hack of sticking a dummy value into | Brett Cannon | 2010-09-19 | 2 | -3/+16 |
| | | | | | | | fromlist to get __import__ to return the module desired. Now it uses the proper approach of fetching the module from sys.modules. Closes issue #9252. Thanks to Alexander Belopolsky for the bug report. | ||||
* | Be more precise as to what operations are supported | Antoine Pitrou | 2010-09-19 | 1 | -5/+21 |
| | |||||
* | Remove references to read() and write() methods, which are useless synonyms of | Antoine Pitrou | 2010-09-19 | 1 | -28/+14 |
| | | | | recv() and send() | ||||
* | Mention that SSL sockets provide the basic socket API. | Antoine Pitrou | 2010-09-19 | 1 | -0/+6 |
| | |||||
* | Edit concurrent docs, add versionadded and see also reference to the PEP. | Georg Brandl | 2010-09-19 | 1 | -145/+152 |
| | |||||
* | Issue #9552: Avoid unnecessary rebuild of OpenSSL. (Windows) | Hirokazu Yamamoto | 2010-09-19 | 4 | -13/+15 |
| | |||||
* | Add "concurrent" subdir to Makefile. | Georg Brandl | 2010-09-19 | 1 | -1/+1 |
| | |||||
* | Set svn:ignore to folders. | Hirokazu Yamamoto | 2010-09-19 | 0 | -0/+0 |
| | |||||
* | edit concurrent.future docs | Benjamin Peterson | 2010-09-19 | 1 | -62/+55 |
| | |||||
* | set svn:eol-style on concurrent package files | Benjamin Peterson | 2010-09-19 | 0 | -0/+0 |
| | |||||
* | set svn:eol-style on tracedmodules | Benjamin Peterson | 2010-09-19 | 0 | -0/+0 |
| | |||||
* | Update the test_distutils mode test to test with umask value properly. | Senthil Kumaran | 2010-09-19 | 1 | -2/+7 |
| | |||||
* | Issue #1686: Fix string.Template when overriding the pattern attribute. | Florent Xicluna | 2010-09-18 | 3 | -9/+39 |
| | |||||
* | Issue #9854: SocketIO objects now observe the RawIOBase interface in | Antoine Pitrou | 2010-09-18 | 3 | -8/+86 |
| | | | | | non-blocking mode: they return None when an operation would block (instead of raising an exception). | ||||
* | Issue #9895: speed up test_subprocess | Antoine Pitrou | 2010-09-18 | 1 | -13/+32 |
| | |||||
* | Initial implementation of PEP 3148 | Brian Quinlan | 2010-09-18 | 8 | -0/+2217 |
| | |||||
* | Issue #9894: Do not hardcode ENOENT in test_subprocess. | Antoine Pitrou | 2010-09-18 | 2 | -1/+3 |
| | | | | (GNU/Hurd is not dead) | ||||
* | In Python3000, Tkinter was renamed to tkinter. And print is now function. | Hirokazu Yamamoto | 2010-09-18 | 1 | -2/+2 |
| | |||||
* | Applied r84870 to older compilers. | Hirokazu Yamamoto | 2010-09-18 | 2 | -2/+2 |
| | |||||
* | Added missing BaseTest.tearDown(self). Fixed refleak. | Hirokazu Yamamoto | 2010-09-18 | 1 | -0/+1 |
| | |||||
* | Skip the distutils mode test on Windows OS. | Senthil Kumaran | 2010-09-18 | 1 | -0/+3 |
| | |||||
* | regrtest.py now runs python in build/test_python_xxx. (deeper than here) | Hirokazu Yamamoto | 2010-09-18 | 1 | -1/+1 |
| | | | | | So failed to load tcl/tk dll because $(dist)/tcltk/bin was set to PATH as relative path. (Windows) | ||||
* | Remove unused code in posixmodule.c | Amaury Forgeot d'Arc | 2010-09-17 | 1 | -68/+0 |
| | |||||
* | Temporarily commented out test which succeeds locally but fails on ↵ | Vinay Sajip | 2010-09-17 | 1 | -1/+3 |
| | | | | buildbots, while investigating. | ||||
* | Issue #767645: Set os.path.supports_unicode_filenames to True in posixpath | Victor Stinner | 2010-09-17 | 2 | -3/+2 |
| | | | | Previous commit changed macpath but macpath is not used anymore as os.path | ||||
* | #1730136: Fix comparison between a tk Font object and an object of a ↵ | Amaury Forgeot d'Arc | 2010-09-17 | 3 | -1/+24 |
| | | | | different type. | ||||
* | Issue #9441: logging: Improved test coverage for rotating file handlers. | Vinay Sajip | 2010-09-17 | 2 | -1/+80 |
| | |||||
* | Fix Issue2236: Distutils' mkpath implementation ignoring the "mode" parameter | Senthil Kumaran | 2010-09-17 | 2 | -1/+8 |
| | |||||
* | Improved Filter documentation. | Vinay Sajip | 2010-09-17 | 1 | -0/+14 |
| | |||||
* | Improved basicConfig and custom level documentation. | Vinay Sajip | 2010-09-17 | 1 | -2/+33 |
| | |||||
* | Let's see if tcl/tk test runs on windows buildbot with this fix. | Hirokazu Yamamoto | 2010-09-17 | 1 | -1/+1 |
| | |||||
* | Fix typo in example regular expression. | Raymond Hettinger | 2010-09-17 | 1 | -1/+1 |
| | |||||
* | Issue 9865: add __sizeof__ to OrderedDict. | Raymond Hettinger | 2010-09-16 | 3 | -11/+28 |
| | |||||
* | Issue #9810: Compile bzip2 source files in python's project file | Hirokazu Yamamoto | 2010-09-16 | 2 | -24/+63 |
| | | | | directly. It used to be built with bzip2's makefile. | ||||
* | Relax test condition (fix failures on FreeBSD buildbots) | Antoine Pitrou | 2010-09-16 | 1 | -2/+4 |
| | |||||
* | Add tokenizer example to regex docs. | Raymond Hettinger | 2010-09-16 | 1 | -0/+63 |
| |