[Python-checkins] python/dist/src/Demo/newmetaclasses Enum.py, 1.1,
1.2
doerwalter at users.sourceforge.net
doerwalter at users.sourceforge.net
Thu Feb 12 12:35:35 EST 2004
- Previous message: [Python-checkins] python/dist/src/Demo/metaclasses Enum.py, 1.3,
1.4 Meta.py, 1.4, 1.5 Trace.py, 1.3, 1.4
- Next message: [Python-checkins] python/dist/src/Demo/rpc T.py, 1.3,
1.4 rnusersclient.py, 1.3, 1.4 rpc.py, 1.11, 1.12 xdr.py, 1.10, 1.11
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/python/python/dist/src/Demo/newmetaclasses
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21620/Demo/newmetaclasses
Modified Files:
Enum.py
Log Message:
Replace backticks with repr() or "%r"
>From SF patch #852334.
Index: Enum.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Demo/newmetaclasses/Enum.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** Enum.py 11 Jul 2002 21:08:06 -0000 1.1
--- Enum.py 12 Feb 2004 17:35:02 -0000 1.2
***************
*** 98,102 ****
print Color.red
! print `Color.red`
print Color.red == Color.red
print Color.red == Color.blue
--- 98,102 ----
print Color.red
! print repr(Color.red)
print Color.red == Color.red
print Color.red == Color.blue
***************
*** 140,144 ****
print Color.red
! print `Color.red`
print Color.red == Color.red
print Color.red == Color.blue
--- 140,144 ----
print Color.red
! print repr(Color.red)
print Color.red == Color.red
print Color.red == Color.blue
- Previous message: [Python-checkins] python/dist/src/Demo/metaclasses Enum.py, 1.3,
1.4 Meta.py, 1.4, 1.5 Trace.py, 1.3, 1.4
- Next message: [Python-checkins] python/dist/src/Demo/rpc T.py, 1.3,
1.4 rnusersclient.py, 1.3, 1.4 rpc.py, 1.11, 1.12 xdr.py, 1.10, 1.11
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the Python-checkins
mailing list