- 29 Ara, 2009 4 kayıt (commit)
-
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Benjamin Peterson yazdı
-
- 28 Ara, 2009 7 kayıt (commit)
-
-
Benjamin Peterson yazdı
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 yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
#7033: add new API function PyErr_NewExceptionWithDoc, for easily giving new exceptions a docstring.
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
- 27 Ara, 2009 5 kayıt (commit)
-
-
Mark Dickinson yazdı
-
Amaury Forgeot d'Arc yazdı
-
Mark Dickinson yazdı
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 yazdı
-
Senthil Kumaran yazdı
This is on hosts with multiple ip addresses.
-
- 25 Ara, 2009 1 kayıt (commit)
-
-
Ezio Melotti yazdı
-
- 24 Ara, 2009 11 kayıt (commit)
-
-
Ezio Melotti yazdı
-
Mark Dickinson yazdı
-
Benjamin Peterson yazdı
-
Ronald Oussoren yazdı
-
Ronald Oussoren yazdı
-
Ronald Oussoren yazdı
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 yazdı
/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 yazdı
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 yazdı
-
Senthil Kumaran yazdı
-
Benjamin Peterson yazdı
-
- 23 Ara, 2009 1 kayıt (commit)
-
-
Gregory P. Smith yazdı
-
- 22 Ara, 2009 1 kayıt (commit)
-
-
Brett Cannon yazdı
-
- 21 Ara, 2009 10 kayıt (commit)
-
-
Tarek Ziadé yazdı
-
Tarek Ziadé yazdı
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
Mark Dickinson yazdı
for bug report and patch.
-
Mark Dickinson yazdı
-
Mark Dickinson yazdı
pymath.c to Modules/_math.c.
-
R. David Murray yazdı
-
Mark Dickinson yazdı
-