summaryrefslogtreecommitdiffstats
path: root/Objects/object.c
diff options
context:
space:
mode:
Diffstat (limited to 'Objects/object.c')
-rw-r--r--Objects/object.c13
1 files changed, 1 insertions, 12 deletions
diff --git a/Objects/object.c b/Objects/object.c
index 16053a9..707dd58 100644
--- a/Objects/object.c
+++ b/Objects/object.c
@@ -207,17 +207,6 @@ so there is exactly one (which is indestructible, by the way).
*/
/* ARGSUSED */
-static int
-none_print(op, fp, flags)
- object *op;
- FILE *fp;
- int flags;
-{
- fprintf(fp, "None");
- return 0;
-}
-
-/* ARGSUSED */
static object *
none_repr(op)
object *op;
@@ -232,7 +221,7 @@ static typeobject Notype = {
0,
0,
0, /*tp_dealloc*/ /*never called*/
- none_print, /*tp_print*/
+ 0, /*tp_print*/
0, /*tp_getattr*/
0, /*tp_setattr*/
0, /*tp_compare*/