summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* remove reverted changedBenjamin Peterson2010-06-241-3/+0
|
* cpython only gc testsBenjamin Peterson2010-06-231-0/+3
|
* Issue #8930: Remaining indentation fixes after the Grand Unified Indenting.Stefan Krah2010-06-231-57/+57
|
* Fix misindents in compile.c (for Benjamin).Antoine Pitrou2010-06-221-11/+11
| | | | Of course, whoever used the wrong indentation rules needs to be spanked.
* mark ref counting as impl detailBenjamin Peterson2010-06-221-4/+3
|
* must force gc hereBenjamin Peterson2010-06-221-1/+3
|
* bump revisionBenjamin Peterson2010-06-221-2/+2
|
* spacing nit; this isn't CBenjamin Peterson2010-06-221-1/+1
|
* remove INT_MAX assertions; they can fail with large Py_ssize_t #9058Benjamin Peterson2010-06-222-3/+2
|
* keep UserDict an old-style classBenjamin Peterson2010-06-223-4/+4
| | | | Be generous in abc.py to allow this.
* The code in _scproxy (a mac specific helper module toRonald Oussoren2010-06-221-1/+1
| | | | | | | | | | | | | detect proxy settings) had the wrong logic for detecting if the checkbox 'Exclude simple hostnames' is checked. This checkin fixes that. As a result the test failure 'Issue8455' goes away on systems where the checkbox is not checked. I'm carefully avoiding saying that is fixes that issue, test_urllib2_localnet assumes that system proxy settings are empty (not just on OSX, see Issue8455 for details).
* Fix for issue8446:Ronald Oussoren2010-06-222-13/+7
| | | | | | | | | | * Don't import 'ic' in webbrowser, that module is no longer used * Remove 'MacOS' from the list of modules that should emit a Py3kWarning on import. This is needed because one of the earlier tests triggers and import of this extension, and that causes a failure in test_py3kwarn (running test_py3kwarn separately worked fine) With these changes 'make tests' no longer says that test_py3kwarn fails.
* towards final releaseBenjamin Peterson2010-06-212-1/+13
|
* tag 2.7rc2Benjamin Peterson2010-06-211-0/+1
|
* bump verson to 2.7rc2v2.7rc2Benjamin Peterson2010-06-216-7/+7
|
* update pydoc-topicsBenjamin Peterson2010-06-211-1/+1
|
* fix finding visual studio 2008 on 64 bit #8854Benjamin Peterson2010-06-212-4/+19
|
* Add tests for problems reported in issue 8959.Thomas Heller2010-06-211-0/+35
|
* Fix #8959 by reverting revision 80761.Thomas Heller2010-06-2116-376/+1955
|
* Note that Python 3.x isn't covered; add forward ref. for UTF-8; note error ↵Andrew M. Kuchling2010-06-201-9/+24
| | | | in 2.5 and up
* Merge test_strtod and test_float string-to-float conversion tests.Mark Dickinson2010-06-202-102/+6
|
* update emacs sectionBenjamin Peterson2010-06-201-10/+4
|
* Revert r60115Jean-Paul Calderone2010-06-182-5/+3
| | | | | | | | | | | | This revision introduced quoting for strings containing | based on a misunderstanding of the commonly used quoting rules used on Windows. | is interpreted by cmd.exe, not by the MS C runtime argv initializer. It only needs to be quoted if it is part of an argument passed through cmd.exe. See issue1300, issue7839, and issue8972.
* Add few words about test.test_genericpath.CommonTestFlorent Xicluna2010-06-171-0/+3
|
* Fix Issue4452 - Incorrect docstring of os.setpgrpSenthil Kumaran2010-06-171-1/+1
|
* #8720: fix inspect regression by teaching getsourcefile about linecache.R. David Murray2010-06-173-1/+24
| | | | | | | | | The fix for issue 4050 caused a regression: before that fix, source lines in the linecache would eventually be found by inspect. After the fix inspect reports an error earlier, and the source isn't found. The fix for the fix is to have getsourcefile look in the linecache for the file and return the psuedo-filename if the source is there, just as it already returns it if there is a PEP 302 loader.
* Addressing RDM's review comments on the doc change.Senthil Kumaran2010-06-161-5/+7
|
* Fix Issue8937 - SimpleHTTPServer should contain usage exampleSenthil Kumaran2010-06-161-1/+23
|
* Issue #8469: Further clarifications and improvements to struct moduleMark Dickinson2010-06-151-30/+33
| | | | documentation. Thanks Mads Kiilerich.
* Add another bunch of itemsAndrew M. Kuchling2010-06-151-0/+16
|
* #8993: fix reference.Georg Brandl2010-06-141-1/+1
|
* Ezio Melotti was missing from Misc/ACKS.Mark Dickinson2010-06-131-0/+1
|
* Add Éric Araujo to Misc/ACKS for doc work and many patch and commit reviews.Mark Dickinson2010-06-131-0/+1
|
* Issue #8986: erfc was raising OverflowError on Linux for arguments inMark Dickinson2010-06-135-6/+68
| | | | | the (approximate) range (-27.3, 30.0), as a result of an escaped errno value.
* Revert r80580 due to some unintended side effects. See issue #8202 for details.Nick Coghlan2010-06-133-6/+11
|
* Grammar fixAndrew M. Kuchling2010-06-121-1/+1
|
* Issue #8469: Add standard sizes to table in struct documentation; additionalMark Dickinson2010-06-121-118/+119
| | | | | | clarifications and documentation tweaks. Backport of revisions 81955-81956 from py3k.
* fix warning with ucs4Benjamin Peterson2010-06-121-1/+2
|
* Backport a fix from Py3k for a potentially misleading exampleNick Coghlan2010-06-121-4/+4
|
* Update README.Georg Brandl2010-06-121-19/+18
|
* Fix gratuitous indentation.Georg Brandl2010-06-121-12/+12
|
* Add document on how to build.Georg Brandl2010-06-122-3/+95
|
* Use newer toctree syntax.Georg Brandl2010-06-121-6/+6
|
* Update version in README.Georg Brandl2010-06-121-2/+2
|
* Document that an existing directory raises in mkdir().Georg Brandl2010-06-121-1/+2
|
* Fix punctuation.Georg Brandl2010-06-121-1/+1
|
* Issue #8924: logging: Improved error handling for Unicode in exception text.Vinay Sajip2010-06-112-1/+8
|
* Issue #8941: decoding big endian UTF-32 data in UCS-2 builds could crashAntoine Pitrou2010-06-113-19/+50
| | | | | the interpreter with characters outside the Basic Multilingual Plane (higher than 0x10000).
* different spellings are just unacceptableBenjamin Peterson2010-06-111-1/+1
|
* Fix possible undefined behaviour from signed overflow in struct module.Mark Dickinson2010-06-112-22/+35
| | | | Backport of revisions 81897, 81898 and 81902 from py3k.