Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Allow multiple context managers in one with statement, as proposed | Georg Brandl | 2009-05-25 | 1 | -0/+2 | |
| | | | | | | | in http://codereview.appspot.com/53094 and accepted by Guido. The construct is transformed into multiple With AST nodes so that there should be no problems with the semantics. | |||||
* | add a SETUP_WITH opcode | Benjamin Peterson | 2009-05-25 | 1 | -0/+3 | |
| | | | | | It speeds up the with statement and correctly looks up the special methods involved. | |||||
* | make class skipping decorators the same as skipping every test of the class | Benjamin Peterson | 2009-05-25 | 1 | -0/+3 | |
| | | | | This removes ClassTestSuite and a good bit of hacks. | |||||
* | Issue #3585: Add pkg-config support. | Antoine Pitrou | 2009-05-24 | 3 | -0/+18 | |
| | | | | | It creates a python-2.7.pc file and a python.pc symlink in the $(LIBDIR)/pkgconfig directory. Patch by Clinton Roy. | |||||
* | Issue #6050: Don't fail extracting a directory from a zipfile if | Martin v. Löwis | 2009-05-24 | 1 | -0/+3 | |
| | | | | the directory already exists. | |||||
* | Issue #6065: Do not try to build a version-independent | Martin v. Löwis | 2009-05-24 | 1 | -0/+3 | |
| | | | | | | installer if the package has extension modules. Also add NEWS entry for #5311. | |||||
* | Issue #1309352: fcntl now converts its third arguments to a C `long` rather | Antoine Pitrou | 2009-05-24 | 1 | -0/+4 | |
| | | | | | than an int, which makes some operations possible under 64-bit Linux (e.g. DN_MULTISHOT with F_NOTIFY). | |||||
* | Fixed Issue1424152, urllib2 fails with HTTPS over Proxy. | Senthil Kumaran | 2009-05-24 | 1 | -0/+3 | |
| | ||||||
* | reorder name | Benjamin Peterson | 2009-05-23 | 1 | -1/+1 | |
| | ||||||
* | support building with subversion 1.7 #6094 | Benjamin Peterson | 2009-05-23 | 2 | -0/+3 | |
| | ||||||
* | Issue #1983: Fix functions taking or returning a process identifier to use | Antoine Pitrou | 2009-05-23 | 1 | -0/+4 | |
| | | | | | 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. | |||||
* | Fix Issue #4066: smtplib.SMTP_SSL._get_socket now correctly returns | R. David Murray | 2009-05-23 | 2 | -0/+5 | |
| | | | | the socket. Patch by Farhan Ahmad, test by Marcin Bachry. | |||||
* | Issue #5829: don't raise OverflowError for complex('1e500'). Backport of ↵ | Mark Dickinson | 2009-05-20 | 1 | -0/+4 | |
| | | | | r72803. | |||||
* | fixed the 'package' option of build_ext | Tarek Ziadé | 2009-05-19 | 1 | -0/+3 | |
| | ||||||
* | Issue 6032: fix refleaks in test_urllib2_localnet. | Collin Winter | 2009-05-18 | 1 | -1/+1 | |
| | ||||||
* | Fixed #6053 - win32 fixes for distutils tests | Tarek Ziadé | 2009-05-18 | 1 | -0/+2 | |
| | ||||||
* | Fixed the library extension when distutils build_ext is used inplace | Tarek Ziadé | 2009-05-18 | 1 | -0/+3 | |
| | ||||||
* | Added NEWS for r72698. | Hirokazu Yamamoto | 2009-05-17 | 1 | -0/+2 | |
| | ||||||
* | typo | Benjamin Peterson | 2009-05-16 | 1 | -2/+2 | |
| | ||||||
* | update | Benjamin Peterson | 2009-05-16 | 1 | -0/+3 | |
| | ||||||
* | #6041: sdist and register now use the check command. No more duplicate code ↵ | Tarek Ziadé | 2009-05-16 | 1 | -0/+3 | |
| | | | | for metadata checking | |||||
* | Issue #2116: Weak references and weak dictionaries now support copy()ing and ↵ | Antoine Pitrou | 2009-05-15 | 1 | -0/+3 | |
| | | | | deepcopy()ing. | |||||
* | Issue #1655: Make imaplib IPv6-capable. Patch by Derek Morr. | Antoine Pitrou | 2009-05-15 | 1 | -0/+2 | |
| | ||||||
* | Issue #5918: Fix a crash in the parser module. | Antoine Pitrou | 2009-05-14 | 1 | -0/+2 | |
| | | | | Patch by Amaury. | |||||
* | Issue #1664: Make nntplib IPv6-capable. Patch by Derek Morr. | Antoine Pitrou | 2009-05-14 | 2 | -0/+3 | |
| | | | | (Unfortunately, nntplib doesn't have a test suite) | |||||
* | #6022 fixed test_get_outputs so it doesn't leaves a test file in the cwd | Tarek Ziadé | 2009-05-14 | 1 | -0/+3 | |
| | ||||||
* | Issue #4050: inspect.findsource/getsource now raise an IOError if the 'source' | R. David Murray | 2009-05-13 | 2 | -0/+5 | |
| | | | | file is a binary. Patch by Brodie Rao, test by Daniel Diniz. | |||||
* | Move news item to correct section, remove spurious 'see below' | R. David Murray | 2009-05-13 | 1 | -2/+2 | |
| | | | | from docstring. | |||||
* | Issue 5994: add docstrings to marshal. | R. David Murray | 2009-05-13 | 1 | -0/+2 | |
| | ||||||
* | fixed #5977: distutils build_ext.get_outputs was not using the inplace option | Tarek Ziadé | 2009-05-12 | 1 | -0/+3 | |
| | ||||||
* | Add missing # to NEWS | Michael Foord | 2009-05-11 | 1 | -1/+1 | |
| | ||||||
* | Adds a verbosity keyword argument to unittest.main plus a minor fix allowing ↵ | Michael Foord | 2009-05-11 | 1 | -0/+6 | |
| | | | | | | | | | | you to specify test modules / classes from the command line. Closes issue 5995. Michael Foord | |||||
* | Issue #5981: Fix some float.fromhex bugs related to inf and nan handling. | Mark Dickinson | 2009-05-11 | 1 | -0/+6 | |
| | ||||||
* | fixed #5984 and improved test coverage | Tarek Ziadé | 2009-05-10 | 1 | -0/+3 | |
| | ||||||
* | Issue #5971: StreamHandler.handleError now swallows IOErrors which occur ↵ | Vinay Sajip | 2009-05-09 | 1 | -4/+7 | |
| | | | | when trying to print a traceback. | |||||
* | #5976: fixed distutils test_check_environ | Tarek Ziadé | 2009-05-09 | 1 | -0/+2 | |
| | ||||||
* | Fixed Issue 5900: distutils.command.build_ext - Ensure RUNPATH is added to ↵ | Tarek Ziadé | 2009-05-09 | 1 | -0/+3 | |
| | | | | extension modules with RPATH if GNU ld is used | |||||
* | Issue 5954, PyFrame_GetLineNumber: | Jeffrey Yasskin | 2009-05-08 | 1 | -0/+3 | |
| | | | | | | | | | | | | | | Most uses of PyCode_Addr2Line (http://www.google.com/codesearch?q=PyCode_Addr2Line) are just trying to get the line number of a specified frame, but there's no way to do that directly. Forcing people to go through the code object makes them know more about the guts of the interpreter than they should need. The remaining uses of PyCode_Addr2Line seem to be getting the line from a traceback (for example, http://www.google.com/codesearch/p?hl=en#u_9_nDrchrw/pygame-1.7.1release/src/base.c&q=PyCode_Addr2Line), which is replaced by the tb_lineno field. So we may be able to deprecate PyCode_Addr2Line entirely for external use. | |||||
* | PyCode_NewEmpty: | Jeffrey Yasskin | 2009-05-08 | 1 | -0/+3 | |
| | | | | | | | | Most uses of PyCode_New found by http://www.google.com/codesearch?q=PyCode_New are trying to build an empty code object, usually to put it in a dummy frame object. This patch adds a PyCode_NewEmpty wrapper which lets the user specify just the filename, function name, and first line number, instead of also requiring lots of code internals. | |||||
* | Update the Windows locale mapping with the ones introduced with Vista. | Jeroen Ruigrok van der Werven | 2009-05-08 | 1 | -0/+2 | |
| | ||||||
* | Fixed #5941: added ARFLAGS for the archiver command. | Tarek Ziadé | 2009-05-07 | 2 | -0/+6 | |
| | ||||||
* | News item for Issue5955. | R. David Murray | 2009-05-07 | 1 | -0/+3 | |
| | ||||||
* | Add NEWS entry about issue #3739. | Walter Dörwald | 2009-05-06 | 1 | -0/+3 | |
| | ||||||
* | Fix Issue #4875: find_library can return directories instead of files | Thomas Heller | 2009-05-05 | 1 | -0/+3 | |
| | | | | (on win32) | |||||
* | Issue #5920: Changed format.__float__ and complex.__float__ to use a ↵ | Eric Smith | 2009-05-05 | 1 | -0/+9 | |
| | | | | precision of 12 when using the empty presentation type. This more closely matches str()'s behavior and reduces surprises when adding alignment flags to an empty format string. Patch by Mark Dickinson. | |||||
* | Issue #5847: Remove -n switch on "Edit with IDLE" menu item. | Martin v. Löwis | 2009-05-05 | 1 | -0/+2 | |
| | ||||||
* | #5142: add module skipping feature to pdb. | Georg Brandl | 2009-05-05 | 1 | -0/+2 | |
| | ||||||
* | Add a news entry for r72319. | Georg Brandl | 2009-05-05 | 1 | -0/+3 | |
| | ||||||
* | Fix issue 5890: (property subclass shadows __doc__ string) by inserting | R. David Murray | 2009-05-04 | 1 | -0/+4 | |
| | | | | | | | the __doc__ into the subclass instance __dict__. The fix refactors property_copy to call property_init in such a way that the __doc__ logic is re-executed correctly when getter_doc is 1, thus simplifying property_copy. | |||||
* | Issue #5692: In :class:`zipfile.Zipfile`, fix wrong path calculation when ↵ | Antoine Pitrou | 2009-05-04 | 1 | -0/+3 | |
| | | | | extracting a file to the root directory. |