10 lines
131 B
Python
10 lines
131 B
Python
|
# converting user instance to buffer
|
||
|
class C:
|
||
|
pass
|
||
|
|
||
|
c = C()
|
||
|
try:
|
||
|
d = bytearray(c)
|
||
|
except TypeError:
|
||
|
print('TypeError')
|