mirror of https://github.com/python/cpython.git
merge 3.3 (#17547)
This commit is contained in:
commit
a75a2ec64d
|
@ -300,6 +300,12 @@ IDLE
|
||||||
|
|
||||||
- Issue #14735: Update IDLE docs to omit "Control-z on Windows".
|
- Issue #14735: Update IDLE docs to omit "Control-z on Windows".
|
||||||
|
|
||||||
|
Build
|
||||||
|
-----
|
||||||
|
|
||||||
|
- Issue #17547: In configure, explicitly pass -Wformat for the benefit for GCC
|
||||||
|
4.8.
|
||||||
|
|
||||||
|
|
||||||
What's New in Python 3.3.1 release candidate 1?
|
What's New in Python 3.3.1 release candidate 1?
|
||||||
===============================================
|
===============================================
|
||||||
|
|
|
@ -6529,7 +6529,7 @@ then
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether gcc supports ParseTuple __format__" >&5
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether gcc supports ParseTuple __format__" >&5
|
||||||
$as_echo_n "checking whether gcc supports ParseTuple __format__... " >&6; }
|
$as_echo_n "checking whether gcc supports ParseTuple __format__... " >&6; }
|
||||||
save_CFLAGS=$CFLAGS
|
save_CFLAGS=$CFLAGS
|
||||||
CFLAGS="$CFLAGS -Werror"
|
CFLAGS="$CFLAGS -Werror -Wformat"
|
||||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
/* end confdefs.h. */
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
|
|
@ -1333,7 +1333,7 @@ if test "$GCC" = "yes"
|
||||||
then
|
then
|
||||||
AC_MSG_CHECKING(whether gcc supports ParseTuple __format__)
|
AC_MSG_CHECKING(whether gcc supports ParseTuple __format__)
|
||||||
save_CFLAGS=$CFLAGS
|
save_CFLAGS=$CFLAGS
|
||||||
CFLAGS="$CFLAGS -Werror"
|
CFLAGS="$CFLAGS -Werror -Wformat"
|
||||||
AC_COMPILE_IFELSE([
|
AC_COMPILE_IFELSE([
|
||||||
AC_LANG_PROGRAM([[void f(char*,...)__attribute((format(PyArg_ParseTuple, 1, 2)));]], [[]])
|
AC_LANG_PROGRAM([[void f(char*,...)__attribute((format(PyArg_ParseTuple, 1, 2)));]], [[]])
|
||||||
],[
|
],[
|
||||||
|
|
Loading…
Reference in New Issue