Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #6065: Do not try to build a version-independent | Martin v. Löwis | 2009-05-24 | 2 | -0/+5 |
| | | | | | | installer if the package has extension modules. Also add NEWS entry for #5311. | ||||
* | add a versionadded tag for set_tunnel | Gregory P. Smith | 2009-05-24 | 1 | -0/+2 |
| | |||||
* | Issue #1309352: fcntl now converts its third arguments to a C `long` rather | Antoine Pitrou | 2009-05-24 | 3 | -3/+22 |
| | | | | | than an int, which makes some operations possible under 64-bit Linux (e.g. DN_MULTISHOT with F_NOTIFY). | ||||
* | Fix build under Windows | Antoine Pitrou | 2009-05-24 | 1 | -3/+1 |
| | |||||
* | Fixed Issue1424152, urllib2 fails with HTTPS over Proxy. | Senthil Kumaran | 2009-05-24 | 5 | -3/+66 |
| | |||||
* | Issue #6042: | Jeffrey Yasskin | 2009-05-23 | 6 | -209/+157 |
| | | | | | | | | | | | | | | | lnotab-based tracing is very complicated and isn't documented very well. There were at least 3 comment blocks purporting to document co_lnotab, and none did a very good job. This patch unifies them into Objects/lnotab_notes.txt which tries to completely capture the current state of affairs. I also discovered that we've attached 2 layers of patches to the basic tracing scheme. The first layer avoids jumping to instructions that don't start a line, to avoid problems in if statements and while loops. The second layer discovered that jumps backward do need to trace at instructions that don't start a line, so it added extra lnotab entries for 'while' and 'for' loops, and added a special case for backward jumps within the same line. I replaced these patches by just treating forward and backward jumps differently. | ||||
* | Add smtplib test from issue 5259. | R. David Murray | 2009-05-23 | 1 | -0/+20 |
| | |||||
* | remove mention of old ctypes version | Benjamin Peterson | 2009-05-23 | 1 | -2/+1 |
| | |||||
* | reorder name | Benjamin Peterson | 2009-05-23 | 1 | -1/+1 |
| | |||||
* | support building with subversion 1.7 #6094 | Benjamin Peterson | 2009-05-23 | 7 | -6/+9 |
| | |||||
* | Issue #3877: skip a test_fileio subtest on all BSDs, not only FreeBSD | Antoine Pitrou | 2009-05-23 | 1 | -1/+1 |
| | |||||
* | Some pid_t-expecting or producing functions were forgotten in r72852. | Antoine Pitrou | 2009-05-23 | 1 | -11/+17 |
| | |||||
* | Issue #1983: Fix functions taking or returning a process identifier to use | Antoine Pitrou | 2009-05-23 | 2 | -16/+39 |
| | | | | | the dedicated C type `pid_t` instead of a C `int`. Some platforms have a process identifier type wider than the standard C integer type. | ||||
* | Issue 6089: str.format raises SystemError. | Eric Smith | 2009-05-23 | 3 | -2/+11 |
| | |||||
* | Fix spelling left over from testing. | R. David Murray | 2009-05-23 | 1 | -1/+1 |
| | |||||
* | Don't be so wordy in requires('network') in case other tests | R. David Murray | 2009-05-23 | 1 | -5/+2 |
| | | | | are added later, and skip the existing test if SSL is not available. | ||||
* | Fix Issue #4066: smtplib.SMTP_SSL._get_socket now correctly returns | R. David Murray | 2009-05-23 | 4 | -3/+35 |
| | | | | the socket. Patch by Farhan Ahmad, test by Marcin Bachry. | ||||
* | #6078: _warnings is a builtin module and has no standard init_warnings function. | Georg Brandl | 2009-05-22 | 1 | -1/+1 |
| | |||||
* | #6086: fix spelling and use a better exception to catch. | Georg Brandl | 2009-05-22 | 2 | -6/+6 |
| | |||||
* | Correction in softspace behavior description. | Georg Brandl | 2009-05-22 | 1 | -3/+4 |
| | |||||
* | s/use/call/ | Georg Brandl | 2009-05-22 | 1 | -1/+1 |
| | |||||
* | Fix confusing wording. | Georg Brandl | 2009-05-22 | 1 | -1/+1 |
| | |||||
* | Fix references to file-related functions and methods (os.* vs file.*). | Georg Brandl | 2009-05-22 | 1 | -15/+15 |
| | |||||
* | fixed encoding | Tarek Ziadé | 2009-05-22 | 1 | -2/+2 |
| | |||||
* | #6084: fix example. | Georg Brandl | 2009-05-22 | 1 | -1/+1 |
| | |||||
* | Use raise X(y). | Georg Brandl | 2009-05-22 | 1 | -3/+3 |
| | |||||
* | don't use subprocess.call with PIPEs as the child can fill the pipe buf and | Philip Jenvey | 2009-05-22 | 2 | -2/+14 |
| | | | | | deadlock. add a warning to subprocess docs about this, similar to Popen.wait's. refs http://bugs.jython.org/issue1351 | ||||
* | Fix-up moving average example. | Raymond Hettinger | 2009-05-22 | 1 | -5/+3 |
| | |||||
* | Rename TestCase._result to _resultForDoCleanups to avoid potential clashes ↵ | Michael Foord | 2009-05-21 | 2 | -4/+4 |
| | | | | in TestCase subclasses. Issue 6072. | ||||
* | Issue #5829: don't raise OverflowError for complex('1e500'). Backport of ↵ | Mark Dickinson | 2009-05-20 | 3 | -9/+11 |
| | | | | r72803. | ||||
* | #6051: refer to email examples for better way to construct email messages. | Georg Brandl | 2009-05-20 | 2 | -0/+7 |
| | |||||
* | #6055: refer to "sqlite3" consistently. | Georg Brandl | 2009-05-20 | 2 | -13/+16 |
| | |||||
* | Update bug tracker URL. | Georg Brandl | 2009-05-20 | 2 | -29/+29 |
| | |||||
* | Fix issue #1689458 by teaching frame_setlineno how to jump to the first line of | Jeffrey Yasskin | 2009-05-20 | 2 | -14/+41 |
| | | | | a code object. | ||||
* | typos in ctypes Module | Mark Dickinson | 2009-05-20 | 1 | -2/+2 |
| | |||||
* | Issue 6066: POP_MARK was not in pickle protocol 0. | Collin Winter | 2009-05-20 | 1 | -1/+1 |
| | |||||
* | Remove some old MacPython files that are no longer relevant. | Ronald Oussoren | 2009-05-19 | 40 | -1617/+1 |
| | |||||
* | Remove some traces of 'MacPython' | Ronald Oussoren | 2009-05-19 | 3 | -10/+7 |
| | |||||
* | This patch ensures that the pydoc_data package gets installed. This is needed | Ronald Oussoren | 2009-05-19 | 1 | -1/+1 |
| | | | | | | | | to make it possible to use pydoc to get access to the language reference. That is, without this patch the folllowing won't work: >>> help('if') | ||||
* | Note that ordered dictionaries work with reversed(). | Raymond Hettinger | 2009-05-19 | 1 | -0/+3 |
| | |||||
* | fixed the 'package' option of build_ext | Tarek Ziadé | 2009-05-19 | 3 | -11/+38 |
| | |||||
* | Issue 6032: fix refleaks in test_urllib2_localnet. | Collin Winter | 2009-05-18 | 2 | -18/+22 |
| | |||||
* | While I was modifying test_trace, it threw an exception when I accidentally | Jeffrey Yasskin | 2009-05-18 | 2 | -2/+3 |
| | | | | | | | made it try to set the line number from the trace callback for a 'call' event. This patch makes the error message a little more helpful in that case, and makes it a little less likely that a future editor will make the same mistake in test_trace. | ||||
* | Issue 6037: MutableSequence.__iadd__ should return self. | Raymond Hettinger | 2009-05-18 | 1 | -0/+1 |
| | |||||
* | Fixed #6053 - win32 fixes for distutils tests | Tarek Ziadé | 2009-05-18 | 3 | -3/+9 |
| | |||||
* | working with relative paths to avoid tar warnings on absolute paths | Tarek Ziadé | 2009-05-18 | 1 | -2/+14 |
| | |||||
* | Fixed the library extension when distutils build_ext is used inplace | Tarek Ziadé | 2009-05-18 | 3 | -10/+10 |
| | |||||
* | chop off slash | Benjamin Peterson | 2009-05-17 | 1 | -1/+1 |
| | |||||
* | fixed the test name | Tarek Ziadé | 2009-05-17 | 1 | -2/+2 |
| | |||||
* | ignore .rst files in sphinx its self | Benjamin Peterson | 2009-05-17 | 1 | -0/+3 |
| |