This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author atropashko
Recipients
Date 2007-01-03.00:03:00
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Would be nice if you could change object.h
to pyobject.h or something like that.
object.h is a common name found in kjs
and Qt :-(
Thank you!

The patch is against 2.4

--- Makefile.pre.in	2 Jan 2007 20:03:09 -0000	1.3
+++ Makefile.pre.in	2 Jan 2007 23:52:47 -0000
@@ -522,7 +522,7 @@
 		Include/methodobject.h \
 		Include/modsupport.h \
 		Include/moduleobject.h \
-		Include/object.h \
+		Include/pyobject.h \
 		Include/objimpl.h \
 		Include/patchlevel.h \
 		Include/pydebug.h \
Index: configure
===================================================================
RCS file: /cvsroot/faultline/python/configure,v
retrieving revision 1.2
diff -d -u -r1.2 configure
--- configure	30 Dec 2006 02:55:53 -0000	1.2
+++ configure	2 Jan 2007 23:52:49 -0000
@@ -1,5 +1,5 @@
 #! /bin/sh
-# From configure.in Revision: 1.1.1.1 .
+# From configure.in Revision: 1.2 .
 # Guess values for system-dependent variables and create Makefiles.
 # Generated by GNU Autoconf 2.59 for python 2.4.
 #
@@ -274,7 +274,7 @@
 PACKAGE_STRING='python 2.4'
 PACKAGE_BUGREPORT='http://www.python.org/python-bugs'
 
-ac_unique_file="Include/object.h"
+ac_unique_file="Include/pyobject.h"
 # Factoring default headers for most tests.
 ac_includes_default="\
 #include <stdio.h>
Index: configure.in
===================================================================
RCS file: /cvsroot/faultline/python/configure.in,v
retrieving revision 1.2
diff -d -u -r1.2 configure.in
--- configure.in	30 Dec 2006 02:55:53 -0000	1.2
+++ configure.in	2 Jan 2007 23:52:49 -0000
@@ -6,7 +6,7 @@
 AC_REVISION($Revision: 1.2 $)
 AC_PREREQ(2.53)
 AC_INIT(python, PYTHON_VERSION, http://www.python.org/python-bugs)
-AC_CONFIG_SRCDIR([Include/object.h])
+AC_CONFIG_SRCDIR([Include/pyobject.h])
 AC_CONFIG_HEADER(pyconfig.h)
 
 dnl This is for stuff that absolutely must end up in pyconfig.h.
Index: Include/Python.h
===================================================================
RCS file: /cvsroot/faultline/python/Include/Python.h,v
retrieving revision 1.1.1.1
diff -d -u -r1.1.1.1 Python.h
--- Include/Python.h	28 Dec 2006 18:35:20 -0000	1.1.1.1
+++ Include/Python.h	2 Jan 2007 23:52:51 -0000
@@ -73,7 +73,7 @@
 #endif
 #include "pymem.h"
 
-#include "object.h"
+#include "pyobject.h"
 #include "objimpl.h"
 
 #include "pydebug.h"
Index: Parser/tokenizer.h
===================================================================
RCS file: /cvsroot/faultline/python/Parser/tokenizer.h,v
retrieving revision 1.1.1.1
diff -d -u -r1.1.1.1 tokenizer.h
--- Parser/tokenizer.h	28 Dec 2006 18:35:31 -0000	1.1.1.1
+++ Parser/tokenizer.h	2 Jan 2007 23:52:54 -0000
@@ -4,7 +4,7 @@
 extern "C" {
 #endif
 
-#include "object.h"
+#include "pyobject.h"
 
 /* Tokenizer interface */
History
Date User Action Args
2007-08-23 14:50:54adminlinkissue1626545 messages
2007-08-23 14:50:54admincreate