- 13 Ara, 2010 1 kayıt (commit)
-
-
Gregory P. Smith yazdı
the C code, using pipe2() when available. Adds unittests for close_fds and cloexec behaviors.
-
- 24 Kas, 2010 1 kayıt (commit)
-
-
Barry Warsaw yazdı
-
- 20 Kas, 2010 1 kayıt (commit)
-
-
Mark Dickinson yazdı
-
- 01 Kas, 2010 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 31 Eki, 2010 2 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
- 18 Eki, 2010 1 kayıt (commit)
-
-
Barry Warsaw yazdı
This adds $ABIFLAGS to the static library, since it should match the shared library name. Also, include the abiflags in python-config --libs.
-
- 17 Eki, 2010 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 16 Eki, 2010 1 kayıt (commit)
-
-
Barry Warsaw yazdı
* Expose the build flags to Python as sys.abiflags * Shared library libpythonX.Y<abiflags>.so * python-config --abiflags * Make two distutils tests that failed with --enable-shared (even before this patch) succeed. * Fix a few small style issues.
-
- 15 Eki, 2010 1 kayıt (commit)
-
-
R. David Murray yazdı
Patch by Sébastien Sablé.
-
- 14 Eki, 2010 2 kayıt (commit)
-
-
Matthias Klose yazdı
-
Antoine Pitrou yazdı
where supported by the system. Patch by Nikita Vetoshkin.
-
- 13 Eki, 2010 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
don't do in configure as well. Hopefully this will solve a Makefile parsing issue on the FreeBSD buildbots.
-
- 10 Eki, 2010 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
Akira Kitada.
-
- 21 Eyl, 2010 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
- 12 Eyl, 2010 1 kayıt (commit)
-
-
Amaury Forgeot d'Arc yazdı
The internal unicode database is now always used. (after 5 years: see http://mail.python.org/pipermail/python-dev/2004-December/050193.html )
-
- 10 Eyl, 2010 2 kayıt (commit)
-
-
Antoine Pitrou yazdı
be built as a shared library. Patch by Sébastien Sablé.
-
Antoine Pitrou yazdı
-
- 07 Eyl, 2010 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
Patch by Sébastien Sablé.
-
- 05 Eyl, 2010 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 03 Eyl, 2010 2 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 31 Agu, 2010 1 kayıt (commit)
-
-
Daniel Stutzbach yazdı
-
- 30 Agu, 2010 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
Sébastien Sablé.
-
- 13 Agu, 2010 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
compilers (which are detected by the configure script). They can still be disable selectively by specifying --without-computed-gotos.
-
- 02 Agu, 2010 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 19 Tem, 2010 1 kayıt (commit)
-
-
Mark Dickinson yazdı
-
- 18 Tem, 2010 1 kayıt (commit)
-
-
Mark Dickinson yazdı
Add configure check for a bug with gcc soft floating-point and subnormals, to help debug issue 8265.
-
- 09 Tem, 2010 1 kayıt (commit)
-
-
Jeffrey Yasskin yazdı
configure to append to Python's default values for those variables, and similarly allow users to set $XXFLAGS on the make command line to append to the values set by configure. In the makefile, this renames the variables that used to be $XXFLAGS to $PY_XXFLAGS, and renames the old $PY_CFLAGS to $PY_CORE_CFLAGS. To compensate, sysconfig now aliases $XXFLAGS=$PY_XXFLAGS so that scripts using it keep working. I see that as the right interface, not a backward-compatibility hack, since these are logically the $XXFLAGS variables; we just use a different name in the makefile to deal with make's semantics.
-
- 19 Haz, 2010 2 kayıt (commit)
-
-
Jean-Paul Calderone yazdı
-
Jean-Paul Calderone yazdı
-
- 28 May, 2010 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r81582 | martin.v.loewis | 2010-05-28 17:28:47 +0200 (Fr, 28 Mai 2010) | 2 lines Issue #1759169: Drop _XOPEN_SOURCE on Solaris. ........
-
- 11 May, 2010 1 kayıt (commit)
-
-
Mark Dickinson yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r81077 | mark.dickinson | 2010-05-11 09:55:06 +0100 (Tue, 11 May 2010) | 3 lines Issue #8510: Remove nested 'main' functions (causing failure) in 3 configure tests; remove some unnecessary '#include "confdefs.h"' lines. Thanks Roumen Petrov. ........
-
- 05 May, 2010 1 kayıt (commit)
-
-
Mark Dickinson yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r80832 | mark.dickinson | 2010-05-05 23:23:58 +0100 (Wed, 05 May 2010) | 2 lines Issue #8625: Turn off gcc optimization in debug builds. ........
-
- 03 May, 2010 2 kayıt (commit)
-
-
Jesus Cea yazdı
-
Jeffrey Yasskin yazdı
http://code.google.com/p/data-race-test/wiki/ThreadSanitizer is a dynamic data race detector that runs on top of valgrind. With this patch, the binaries at http://code.google.com/p/data-race-test/wiki/ThreadSanitizer#Binaries pass many but not all of the Python tests. All of regrtest still passes outside of tsan. I've implemented part of the C1x atomic types so that we can explicitly mark variables that are used across threads, and get defined behavior as compilers advance. I've added tsan's client header and implementation to the codebase in dynamic_annotations.{h,c} (docs at http://code.google.com/p/data-race-test/wiki/DynamicAnnotations). Unfortunately, I haven't been able to get helgrind and drd to give sensible error messages, even when I use their client annotations, so I'm not supporting them.
-
- 30 Nis, 2010 2 kayıt (commit)
-
-
Marc-André Lemburg yazdı
svn+pythonssh://pythondev@svn.python.org/python/trunk ........ r80665 | marc-andre.lemburg | 2010-04-30 19:20:14 +0200 (Fri, 30 Apr 2010) | 7 lines [issue8211] configure: ignore AC_PROG_CC hardcoded CFLAGS Only override the AC_PROG_CC determined CFLAGS if they were set by the user. This restores the default behavior in the common case of not having CFLAGS defined when running configure. ........
-
Ronald Oussoren yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r80647 | ronald.oussoren | 2010-04-30 13:20:14 +0200 (Fri, 30 Apr 2010) | 11 lines Fix for issue #3646: with this patch it is possible to do a framework install of Python in your home directory (on OSX): $ configure --enable-framework=${HOME}/Library/Frameworks $ make && make install Without this patch the framework would get installed just fine, but 'make install' would try to install the application bundles and command-line tools outside the user's home, which doesn't work for non-admin users (and is bad form anyway). ........
-
- 28 Nis, 2010 1 kayıt (commit)
-
-
Jesus Cea yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r80574 | jesus.cea | 2010-04-28 12:32:30 +0200 (Wed, 28 Apr 2010) | 1 line Issue #3928: Support 'os.mknod()' in Solaris ........
-
- 25 Nis, 2010 1 kayıt (commit)
-
-
Matthias Klose yazdı
RETSIGTYPE is always void (issue #8510).
-