- 30 Dec, 2009 6 commits
-
-
Georg Brandl authored
-
Mark Dickinson authored
-
Mark Dickinson authored
operator, on IEEE 754 platforms. Thanks Marcos Donolo for original patch.
-
Ezio Melotti authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
- 29 Dec, 2009 10 commits
-
-
Andrew M. Kuchling authored
-
Amaury Forgeot d'Arc authored
-
Amaury Forgeot d'Arc authored
used to drop the time part of the result.
-
Georg Brandl authored
-
Mark Dickinson authored
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.
-
Andrew M. Kuchling authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Benjamin Peterson authored
-
- 28 Dec, 2009 7 commits
-
-
Benjamin Peterson authored
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 ........
-
Benjamin Peterson authored
-
Georg Brandl authored
-
Georg Brandl authored
#7033: add new API function PyErr_NewExceptionWithDoc, for easily giving new exceptions a docstring.
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
- 27 Dec, 2009 5 commits
-
-
Mark Dickinson authored
-
Amaury Forgeot d'Arc authored
-
Mark Dickinson authored
Use ldexp(q, exp) instead of q*2.**exp in true division test, to avoid bogus failures on platforms with broken pow (e.g., Ubuntu/ia64).
-
Mark Dickinson authored
-
Senthil Kumaran authored
This is on hosts with multiple ip addresses.
-
- 25 Dec, 2009 1 commit
-
-
Ezio Melotti authored
-
- 24 Dec, 2009 11 commits
-
-
Ezio Melotti authored
-
Mark Dickinson authored
-
Benjamin Peterson authored
-
Ronald Oussoren authored
-
Ronald Oussoren authored
-
Ronald Oussoren authored
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.
-
Ronald Oussoren authored
/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/
-
Ronald Oussoren authored
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.
-
Ezio Melotti authored
-
Senthil Kumaran authored
-
Benjamin Peterson authored
-