mirror of
https://github.com/python/cpython.git
synced 2025-08-01 23:53:15 +00:00
parent
ecfeb7f095
commit
70a6b49821
246 changed files with 926 additions and 962 deletions
|
@ -35,7 +35,7 @@ class ICOpaqueData:
|
|||
self.data = data
|
||||
|
||||
def __repr__(self):
|
||||
return "ICOpaqueData(%s)"%`self.data`
|
||||
return "ICOpaqueData(%r)"%(self.data,)
|
||||
|
||||
_ICOpaqueDataType=type(ICOpaqueData(''))
|
||||
|
||||
|
@ -94,7 +94,7 @@ def _code_fontrecord(data, key):
|
|||
chr(0) + _code_default(name)
|
||||
|
||||
def _code_boolean(data, key):
|
||||
print 'XXXX boolean:', `data`
|
||||
print 'XXXX boolean:', repr(data)
|
||||
return chr(data)
|
||||
|
||||
def _code_text(data, key):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue