diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1995-05-16 13:47:03 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1995-05-16 13:47:03 (GMT) |
commit | ebed75116fcd1ebc4737c4ba77b9b74c8b032742 (patch) | |
tree | ee10da97ba30b2d0740ce01eef71aa8d74c1b19e /Tools/modulator/Templates/object_tp_repr | |
parent | 52e02998ef9d0c5643cf037f2db3cc5cf7c8c451 (diff) | |
download | cpython-ebed75116fcd1ebc4737c4ba77b9b74c8b032742.zip cpython-ebed75116fcd1ebc4737c4ba77b9b74c8b032742.tar.gz cpython-ebed75116fcd1ebc4737c4ba77b9b74c8b032742.tar.bz2 |
Templates converted to new naming conventions (thanks to Chak Tan)
Diffstat (limited to 'Tools/modulator/Templates/object_tp_repr')
-rw-r--r-- | Tools/modulator/Templates/object_tp_repr | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/modulator/Templates/object_tp_repr b/Tools/modulator/Templates/object_tp_repr index 45c78df..16aebc7 100644 --- a/Tools/modulator/Templates/object_tp_repr +++ b/Tools/modulator/Templates/object_tp_repr @@ -1,9 +1,9 @@ -static object * +static PyObject * $abbrev$_repr(self) $abbrev$object *self; { - object *s; + PyObject *s; /* XXXX Add code here to put self into s */ return s; |