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 amaury.forgeotdarc
Recipients amaury.forgeotdarc
Date 2008-08-31.20:40:36
SpamBayes Score 0.004258396
Marked as misclassified No
Message-id <1220215238.73.0.721040984863.issue3743@psf.upfronthosting.co.za>
In-reply-to
Content
test_deque fails on win64 buildbot:
  AssertionError: 'deque([7, 8, 9], maxlen=%Id)' != 'deque([7, 8, 9],
maxlen=3)'

A PY_FORMAT_SIZE_T format is incorrectly used with PyUnicode_FromFormat.
The correct format here is "%zd". PY_FORMAT_SIZE_T should be reserved
for the OS printf routines, PyOS_snprintf, PySys_WriteStderr.

The attached patch replaces 
   "%" PY_FORMAT_SIZE_T "%d" 
with
   "%zd"
History
Date User Action Args
2008-08-31 20:40:39amaury.forgeotdarcsetrecipients: + amaury.forgeotdarc
2008-08-31 20:40:38amaury.forgeotdarcsetmessageid: <1220215238.73.0.721040984863.issue3743@psf.upfronthosting.co.za>
2008-08-31 20:40:37amaury.forgeotdarclinkissue3743 messages
2008-08-31 20:40:37amaury.forgeotdarccreate