Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | wrap long line | Benjamin Peterson | 2009-12-30 | 1 | -1/+2 |
| | |||||
* | only build the nis module when the headers are found #7589 | Benjamin Peterson | 2009-12-30 | 2 | -1/+4 |
| | |||||
* | Add various items | Andrew M. Kuchling | 2009-12-29 | 1 | -3/+68 |
| | |||||
* | #7579: Add docstrings to the msvcrt module | Amaury Forgeot d'Arc | 2009-12-29 | 2 | -14/+107 |
| | |||||
* | #7413: Passing '\0' as the separator to datetime.datetime.isoformat() | Amaury Forgeot d'Arc | 2009-12-29 | 3 | -9/+18 |
| | | | | used to drop the time part of the result. | ||||
* | #7595: fix typo in argument default constant. | Georg Brandl | 2009-12-29 | 2 | -2/+2 |
| | |||||
* | Issue #7575: An overflow test for math.expm1 was failing on OS X 10.4/Intel, | Mark Dickinson | 2009-12-29 | 1 | -1/+7 |
| | | | | | | | due to a defect in the platform's implementation of expm1. Since the issue is of low severity, and appears to be fixed in OS X 10.5 and 10.6, it doesn't seem worth working around, so I'm just weakening the relevant test so that it passes on 10.4. | ||||
* | Various additions | Andrew M. Kuchling | 2009-12-29 | 1 | -26/+66 |
| | |||||
* | Fix wrong markup. | Georg Brandl | 2009-12-29 | 1 | -2/+2 |
| | |||||
* | Improve markup of ctypes docs. | Georg Brandl | 2009-12-29 | 1 | -321/+326 |
| | |||||
* | #7569: clarification about c_char_p. | Georg Brandl | 2009-12-29 | 1 | -2/+4 |
| | |||||
* | enable test_main.py | Benjamin Peterson | 2009-12-29 | 1 | -2/+3 |
| | |||||
* | Merged revisions 76871-76872,77093-77095,77097-77101 via svnmerge from | Benjamin Peterson | 2009-12-28 | 6 | -19/+123 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r76871 | benjamin.peterson | 2009-12-17 20:49:21 -0600 (Thu, 17 Dec 2009) | 1 line handle unencodable diffs gracefully #5093 ........ r76872 | benjamin.peterson | 2009-12-17 20:51:37 -0600 (Thu, 17 Dec 2009) | 1 line fix emacs header ........ r77093 | benjamin.peterson | 2009-12-28 14:43:32 -0600 (Mon, 28 Dec 2009) | 7 lines replace callable(x) with isinstance(x, collections.Callable) #7006 This is a more accurate translation than hasattr(x, '__call__') which failed in the case that somebody had put __call__ in the instance dictionary. Patch mostly by Joe Amenta. ........ r77094 | benjamin.peterson | 2009-12-28 14:45:13 -0600 (Mon, 28 Dec 2009) | 2 lines deuglify imports ........ r77095 | benjamin.peterson | 2009-12-28 14:49:23 -0600 (Mon, 28 Dec 2009) | 1 line remove unused flag ........ r77097 | benjamin.peterson | 2009-12-28 16:12:13 -0600 (Mon, 28 Dec 2009) | 2 lines clean up imports and whitespace ........ r77098 | benjamin.peterson | 2009-12-28 16:43:35 -0600 (Mon, 28 Dec 2009) | 1 line *** empty log message *** ........ r77099 | benjamin.peterson | 2009-12-28 16:45:10 -0600 (Mon, 28 Dec 2009) | 1 line revert unintended change ........ r77100 | benjamin.peterson | 2009-12-28 16:53:21 -0600 (Mon, 28 Dec 2009) | 1 line revert unintended changes ........ r77101 | benjamin.peterson | 2009-12-28 17:46:02 -0600 (Mon, 28 Dec 2009) | 1 line normalize whitespace ........ | ||||
* | document new fix_callable behavior | Benjamin Peterson | 2009-12-28 | 1 | -1/+2 |
| | |||||
* | #7404: remove reference to non-existing example files. | Georg Brandl | 2009-12-28 | 1 | -3/+1 |
| | |||||
* | #7033: add new API function PyErr_NewExceptionWithDoc, for easily giving new ↵ | Georg Brandl | 2009-12-28 | 7 | -2/+119 |
| | | | | exceptions a docstring. | ||||
* | #7381: consistency update, and backport avoiding ``None >= 0`` check from py3k. | Georg Brandl | 2009-12-28 | 1 | -4/+6 |
| | |||||
* | #7586: fix typo. | Georg Brandl | 2009-12-28 | 1 | -1/+1 |
| | |||||
* | #7577: fix signature of PyBuffer_FillInfo(). | Georg Brandl | 2009-12-28 | 1 | -1/+1 |
| | |||||
* | Use a more idiomatic check in check_truediv. | Mark Dickinson | 2009-12-27 | 1 | -3/+2 |
| | |||||
* | Fix a typo in comment | Amaury Forgeot d'Arc | 2009-12-27 | 1 | -2/+2 |
| | |||||
* | Use ldexp(q, exp) instead of q*2.**exp in true division test, to avoid bogus ↵ | Mark Dickinson | 2009-12-27 | 1 | -1/+2 |
| | | | | failures on platforms with broken pow (e.g., Ubuntu/ia64). | ||||
* | Issue #1811: Improve accuracy and consistency of true division for integers. | Mark Dickinson | 2009-12-27 | 4 | -37/+450 |
| | |||||
* | Fix for issue5625 - test_urllib2 fails - urlopen error file not on local host. | Senthil Kumaran | 2009-12-27 | 1 | -2/+3 |
| | | | | This is on hosts with multiple ip addresses. | ||||
* | Updated sys.flags table in Doc | Ezio Melotti | 2009-12-25 | 1 | -0/+4 |
| | |||||
* | #6108: unicode(exception) and str(exception) should return the same message | Ezio Melotti | 2009-12-24 | 3 | -1/+127 |
| | |||||
* | Issue #7568: typo in docstring. Thanks Mike Putnam. | Mark Dickinson | 2009-12-24 | 1 | -1/+1 |
| | |||||
* | allow Process name to be unicode #7571 | Benjamin Peterson | 2009-12-24 | 1 | -1/+1 |
| | |||||
* | Unittests and news items for the patch in r77026. | Ronald Oussoren | 2009-12-24 | 2 | -1/+33 |
| | |||||
* | Fix for issue #7541: python-config --ldflags doesn't pick up libpython2.5.a | Ronald Oussoren | 2009-12-24 | 2 | -0/+4 |
| | |||||
* | Issue #6834: replace the implementation for the 'python' and 'pythonw' ↵ | Ronald Oussoren | 2009-12-24 | 11 | -117/+240 |
| | | | | | | | | | | | | | | | | | executables on OSX. The previous implementation used execv(2) to run the real interpreter, which means that you cannot use the arch(1) tool to select the architecture you want to use for a universal build because that only affects the python/pythonw wrapper and not the actual interpreter. The new version uses posix_spawnv with a number of OSX-specific options that ensure that the real interpreter is started using the same CPU architecture as the wrapper, and that means that 'arch -ppc python' now actually works. I've also changed the way that the wrapper looks for the framework: it is now linked to the framework rather than hardcoding the framework path. This should make it easier to provide pythonw support in tools like virtualenv. | ||||
* | An update to the script that's used to build the binary installer: don't ↵ | Ronald Oussoren | 2009-12-24 | 1 | -1/+7 |
| | | | | | | | | install files in /usr/local by default. Users can still choose to install files into /usr/local, but by default we'll only install files in /Library/Framework/Python.framework and /Applications/Python X.Y/ | ||||
* | On OSX the output of "uname -m" always reflects the 32-bit architecture | Ronald Oussoren | 2009-12-24 | 1 | -0/+10 |
| | | | | | | | | | for the machine ("i386" or "ppc"), even if the executable is 64-bit. This patchs ensures that the distutils platform architecture represents the architecture for the executable when running a 64-bit only executable on OSX. | ||||
* | Added markup and default arg, fixed example | Ezio Melotti | 2009-12-24 | 1 | -7/+7 |
| | |||||
* | Fix for Issue7570: Error in urllib2 example. | Senthil Kumaran | 2009-12-24 | 1 | -2/+2 |
| | |||||
* | fix alleged refleak | Benjamin Peterson | 2009-12-24 | 1 | -3/+8 |
| | |||||
* | Fix possible integer overflow in lchown and fchown functions. For issue1747858. | Gregory P. Smith | 2009-12-23 | 2 | -29/+53 |
| | |||||
* | Make a word plural. | Brett Cannon | 2009-12-22 | 1 | -1/+1 |
| | |||||
* | added a note about #7556 in Misc/NEWS | Tarek Ziadé | 2009-12-21 | 1 | -0/+3 |
| | |||||
* | backported r76993 and r76994 so the trunk behaves the same way with MSVC ↵ | Tarek Ziadé | 2009-12-21 | 2 | -29/+108 |
| | | | | Manifest files editing | ||||
* | Add NEWS for OpenSSL changes. | Martin v. Löwis | 2009-12-21 | 1 | -0/+4 |
| | |||||
* | Switch to OpenSSL 0.9.8l. | Martin v. Löwis | 2009-12-21 | 3 | -4/+4 |
| | |||||
* | Drop 2.4 compatibility. | Martin v. Löwis | 2009-12-21 | 1 | -5/+2 |
| | |||||
* | Issue #7553: test_long_future wasn't testing properly. Thanks Florent Xicluna | Mark Dickinson | 2009-12-21 | 1 | -9/+7 |
| | | | | for bug report and patch. | ||||
* | Inverse hyperbolic trigonometric functions should call m_log1p, not log1p. | Mark Dickinson | 2009-12-21 | 1 | -4/+5 |
| | |||||
* | Issue #7518: Move substitute definitions of C99 math functions from | Mark Dickinson | 2009-12-21 | 8 | -231/+250 |
| | | | | pymath.c to Modules/_math.c. | ||||
* | Remove a leftover from a previous iteration of the issue 7376 patch. | R. David Murray | 2009-12-21 | 1 | -1/+1 |
| | |||||
* | Additional edge-case tests for test_long_and_overflow. | Mark Dickinson | 2009-12-21 | 1 | -16/+107 |
| | |||||
* | Fix reference counts for test_long_and_overflow. | Mark Dickinson | 2009-12-21 | 1 | -0/+6 |
| | |||||
* | Issue #7528: Backport PyLong_AsLongAndOverflow from py3k to trunk. | Mark Dickinson | 2009-12-21 | 5 | -31/+187 |
| | | | | Thanks Case Van Horsen for the patch. |