mirror of
https://github.com/python/cpython.git
synced 2026-05-18 10:24:42 -04:00
05e344954d
PyString_FromFormat which has an independent implementation, and uses "%zd". This makes a difference on win64, where printf needs "%Id" to display 64bit values. For example, queue.__repr__ was incorrect. Reviewed by Martin von Loewis.