Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | update 2to3 script from 2to3 trunk | Benjamin Peterson | 2008-09-03 | 1 | -3/+2 |
| | |||||
* | Merged revisions 66173 via svnmerge from | Benjamin Peterson | 2008-09-03 | 7 | -169/+214 |
| | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r66173 | benjamin.peterson | 2008-09-02 18:57:48 -0500 (Tue, 02 Sep 2008) | 8 lines A little 2to3 refactoring #3637 This moves command line logic from refactor.py to a new file called main.py. RefactoringTool now merely deals with the actual fixers and refactoring; options processing for example is abstracted out. This patch was reviewed by Gregory P. Smith. ........ | ||||
* | Issue 2975: when compiling multiple extension modules with visual studio 2008 | Amaury Forgeot d'Arc | 2008-09-02 | 2 | -2/+17 |
| | | | | | | | | | | from the same python instance, some environment variables (LIB, INCLUDE) would grow without limit. Tested with these statements: distutils.ccompiler.new_compiler().initialize() print os.environ['LIB'] But I don't know how to turn them into reliable unit tests. | ||||
* | Attempt to correct the build files for the Microsoft VS7.1 compiler. | Amaury Forgeot d'Arc | 2008-09-02 | 2 | -10/+13 |
| | | | | | I don't have a working VS7.1, but VS2005 can automatically convert the project and build a working python interpreter. | ||||
* | Use vs9to8.py to refresh the Visual Studio 2005 build files. | Amaury Forgeot d'Arc | 2008-09-02 | 8 | -299/+985 |
| | |||||
* | Issue #3759: test_asyncore.py leaked handle. | Hirokazu Yamamoto | 2008-09-02 | 1 | -0/+2 |
| | | | | Reviewed by Amaury Forgeot d'Arc | ||||
* | Add e-mail address | Andrew M. Kuchling | 2008-09-02 | 1 | -1/+1 |
| | |||||
* | Clarify example; add imports | Andrew M. Kuchling | 2008-09-02 | 1 | -4/+10 |
| | |||||
* | Add news item for #3719. | Marc-André Lemburg | 2008-09-02 | 1 | -0/+3 |
| | |||||
* | Add quotes around the file name to avoid issues with spaces. | Marc-André Lemburg | 2008-09-02 | 1 | -1/+1 |
| | | | | Closes #3719. | ||||
* | Issue 3747: Fix caching in ABCMeta.__subclasscheck__ (R: Georg Brandl) | Nick Coghlan | 2008-09-02 | 1 | -2/+2 |
| | |||||
* | a typo | Mark Summerfield | 2008-09-02 | 1 | -1/+1 |
| | |||||
* | Issue #3708: os.urandom no longer goes into an infinite loop when passed a | Gregory P. Smith | 2008-09-02 | 3 | -5/+14 |
| | | | | non-integer floating point number. | ||||
* | Issue #3678: Correctly pass LDFLAGS and LDLAST to the linker on shared | Gregory P. Smith | 2008-09-02 | 2 | -5/+8 |
| | | | | library targets in the Makefile. | ||||
* | Improve compatibility with Python3.0 testsuite | Jesus Cea | 2008-09-02 | 3 | -7/+12 |
| | |||||
* | typo fix | Andrew M. Kuchling | 2008-09-02 | 1 | -1/+1 |
| | |||||
* | Move test.test_support.catch_warning() to the warnings module, rename it | Brett Cannon | 2008-09-02 | 11 | -126/+208 |
| | | | | | | | | | | | catch_warnings(), and clean up the API. While expanding the test suite, a bug was found where a warning about the 'line' argument to showwarning() was not letting functions with '*args' go without a warning. Closes issue 3602. Code review by Benjamin Peterson. | ||||
* | Describe the __hash__ changes | Andrew M. Kuchling | 2008-09-02 | 1 | -1/+25 |
| | |||||
* | remove py3k warnings about the threading api; update docs | Benjamin Peterson | 2008-09-01 | 4 | -71/+29 |
| | | | | Reviewer: Benjamin Peterson | ||||
* | In Python3.0, "test.test_support" is renamed to "test.support". | Jesus Cea | 2008-09-01 | 1 | -1/+4 |
| | |||||
* | Issue #3751: str.rpartition would perform a left-partition when called with | Amaury Forgeot d'Arc | 2008-09-01 | 3 | -1/+9 |
| | | | | | | a unicode argument. will backport. | ||||
* | Bug #3738: Documentation is now more accurate in describing handler close ↵ | Vinay Sajip | 2008-09-01 | 1 | -4/+6 |
| | | | | methods. | ||||
* | Merged revisions 65887,65889,65967-65968,65981 via svnmerge from | Benjamin Peterson | 2008-09-01 | 6 | -13/+185 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r65887 | benjamin.peterson | 2008-08-19 17:45:04 -0500 (Tue, 19 Aug 2008) | 1 line allow the raw_input fixer to handle calls after the raw_input (ie. raw_input().split()) ........ r65889 | benjamin.peterson | 2008-08-19 18:11:03 -0500 (Tue, 19 Aug 2008) | 1 line no need for 2.4 compatibility now ........ r65967 | benjamin.peterson | 2008-08-21 18:43:37 -0500 (Thu, 21 Aug 2008) | 1 line allow a Call to have no arguments ........ r65968 | benjamin.peterson | 2008-08-21 18:45:13 -0500 (Thu, 21 Aug 2008) | 1 line add a fixer for sys.exc_info etc by Jeff Balogh #2357 ........ r65981 | benjamin.peterson | 2008-08-22 15:41:30 -0500 (Fri, 22 Aug 2008) | 1 line add a fixer to add parenthese for list and gen comps #2367 ........ | ||||
* | revert r66114 for Jesse | Benjamin Peterson | 2008-09-01 | 5 | -39/+146 |
| | |||||
* | Submit Nick's patch for issue 3589, reviewed by jnoller | Jesse Noller | 2008-09-01 | 4 | -132/+32 |
| | |||||
* | Added section about configuring logging in a library. Thanks to Thomas ↵ | Vinay Sajip | 2008-09-01 | 1 | -0/+39 |
| | | | | Heller for the idea. | ||||
* | logging: fixed lack of use of encoding attribute specified on a stream. | Vinay Sajip | 2008-09-01 | 1 | -2/+4 |
| | |||||
* | Issue #3748: platform.architecture() printed vogus message on windows. | Hirokazu Yamamoto | 2008-09-01 | 1 | -0/+3 |
| | | | | Reviewed by Marc-Andre Lemburg. | ||||
* | logging: fixed lack of use of encoding attribute specified on a stream. | Vinay Sajip | 2008-09-01 | 1 | -5/+10 |
| | |||||
* | Issue #3732: Backported r53335 to supress deprecation warning. | Hirokazu Yamamoto | 2008-09-01 | 1 | -5/+5 |
| | | | | Reviewed by Benjamin Peterson. | ||||
* | Fix compilation when --without-threads is given #3683 | Benjamin Peterson | 2008-09-01 | 2 | -3/+8 |
| | | | | Reviewer: Georg Brandl, Benjamin Peterson | ||||
* | #3749: fix c'n'p errors. | Georg Brandl | 2008-09-01 | 1 | -3/+3 |
| | |||||
* | #3703 unhelpful _fileio.FileIO error message when trying to open a directory | Benjamin Peterson | 2008-09-01 | 3 | -1/+17 |
| | | | | Reviewer: Gregory P. Smith | ||||
* | issue3715: docstring representation of hex escaped string needs to be double | Gregory P. Smith | 2008-08-31 | 1 | -1/+1 |
| | | | | escaped. | ||||
* | Update patch/bug count | Andrew M. Kuchling | 2008-08-31 | 1 | -2/+2 |
| | |||||
* | Last batch of edits; remove the 'other changes' section | Andrew M. Kuchling | 2008-08-31 | 1 | -101/+102 |
| | |||||
* | Edit the library section, rearranging items to flow better and making lots ↵ | Andrew M. Kuchling | 2008-08-31 | 1 | -263/+277 |
| | | | | of edits | ||||
* | Update bsddb code to version 4.7.3pre2. This code should | Jesus Cea | 2008-08-31 | 27 | -447/+1020 |
| | | | | | | be compatible with Python 3.0, also. http://www.jcea.es/programacion/pybsddb.htm#bsddb3-4.7.3 | ||||
* | Issue 2235: document the ability to block inheritance of __hash__ in the ↵ | Nick Coghlan | 2008-08-31 | 1 | -2/+18 |
| | | | | language reference | ||||
* | More edits | Andrew M. Kuchling | 2008-08-31 | 1 | -56/+57 |
| | |||||
* | More edits; markup fixes | Andrew M. Kuchling | 2008-08-30 | 1 | -75/+75 |
| | |||||
* | Fix markup. | Georg Brandl | 2008-08-30 | 1 | -1/+1 |
| | |||||
* | #3707: fix inf. recursion in pydoc topic search. Rev'd by Antoine. | Georg Brandl | 2008-08-30 | 1 | -3/+3 |
| | |||||
* | Edit four more sections | Andrew M. Kuchling | 2008-08-30 | 1 | -41/+54 |
| | |||||
* | Correction from Antoine Pitrou: BufferedWriter and Reader support seek() | Andrew M. Kuchling | 2008-08-30 | 1 | -7/+8 |
| | |||||
* | Tidy up some sentences | Andrew M. Kuchling | 2008-08-30 | 1 | -14/+14 |
| | |||||
* | Partial edits from revision and tidying pass | Andrew M. Kuchling | 2008-08-30 | 1 | -61/+84 |
| | |||||
* | super() actually returns a super object. | Georg Brandl | 2008-08-30 | 1 | -1/+2 |
| | |||||
* | #3569: eval() also accepts "exec"able code objects. | Georg Brandl | 2008-08-30 | 1 | -4/+4 |
| | |||||
* | #3716: fix typo. | Georg Brandl | 2008-08-30 | 1 | -1/+1 |
| |