This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author pepalogik
Recipients ezio.melotti, flox, georg.brandl, loewis, mark.dickinson, pepalogik, vstinner
Date 2013-02-07.15:44:11
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1360251851.7.0.930573232173.issue17137@psf.upfronthosting.co.za>
In-reply-to
Content
...
print(ctypes.sizeof(ctypes.c_wchar))
_PyObject_Dump=ctypes.pythonapi._PyObject_Dump
_PyObject_Dump.argtypes=(ctypes.py_object,)
print(_PyObject_Dump(dirname))
print(list(dirname))

in Python 3.3.0 64-bit on Windows 8 produces:

2
object  : 'D:\\Bug reports\\Python\\test\\sub-fcc\\bulk'
type    : str
refcount: 3
address : 00000000028AC298
54
['D', ':', '\\', 'B', 'u', 'g', ' ', 'r', 'e', 'p', 'o', 'r', 't', 's', '\\', 'P', 'y', 't', 'h', 'o', 'n', '\\', 't', 'e', 's', 't', '\\', 's', 'u', 'b', '-', 'f', 'c', 'c', '\\', 'b', 'u', 'l', 'k']
History
Date User Action Args
2013-02-07 15:44:11pepalogiksetrecipients: + pepalogik, loewis, georg.brandl, mark.dickinson, vstinner, ezio.melotti, flox
2013-02-07 15:44:11pepalogiksetmessageid: <1360251851.7.0.930573232173.issue17137@psf.upfronthosting.co.za>
2013-02-07 15:44:11pepalogiklinkissue17137 messages
2013-02-07 15:44:11pepalogikcreate