summaryrefslogtreecommitdiff
path: root/Include/structmember.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2006-08-17 05:42:55 +0000
committerGuido van Rossum <guido@python.org>2006-08-17 05:42:55 +0000
commit50e9fb9e2d6b4b12524116ab775ac6543e4a5332 (patch)
tree96f41e9a6d07a2754fcaceb7b54a7c11f112687f /Include/structmember.h
parentd033ddf4dc501e0920adec9e193750e515bbd128 (diff)
downloadcpython-git-50e9fb9e2d6b4b12524116ab775ac6543e4a5332.tar.gz
Completely get rid of PyClass and PyInstance.
(classobject.[ch] aren't empty yet because they also define PyMethod.) This breaks lots of stuff, notably cPickle. But it's a step in the right direction. I'll clean it up later. (Also a few unrelated changes, e.g. T_NONE to define a "struct member" that is always None, and simplification of __hash__ -- these are unfinished.)
Diffstat (limited to 'Include/structmember.h')
-rw-r--r--Include/structmember.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/Include/structmember.h b/Include/structmember.h
index e761f6d968..a35b7a7890 100644
--- a/Include/structmember.h
+++ b/Include/structmember.h
@@ -67,9 +67,11 @@ typedef struct PyMemberDef {
converting to None. */
#ifdef HAVE_LONG_LONG
#define T_LONGLONG 17
-#define T_ULONGLONG 18
+#define T_ULONGLONG 18
#endif /* HAVE_LONG_LONG */
+#define T_NONE 19 /* Value is always None */
+
/* Flags */
#define READONLY 1
#define RO READONLY /* Shorthand */