Mark Dickinson
|
889d96455a
|
Issue #7228: Fix format mismatch when printing something of type off_t.
(Should silence some compiler warnings.)
|
2009-11-24 20:51:48 +00:00 |
Mark Dickinson
|
3ddb52717f
|
Roll back ill-considered attempts to fix printf specifier mismatch for off_t.
The sensible solution seems to be to implement %lld for PyString_FromFormat(V)
and PyErr_Format. See issue #7228.
|
2009-10-29 09:46:04 +00:00 |
Mark Dickinson
|
e8486931b6
|
Fix format specifier for MSVC
|
2009-10-28 07:47:32 +00:00 |
Mark Dickinson
|
791181b0ff
|
Replace long long with PY_LONG_LONG
|
2009-10-28 07:23:49 +00:00 |
Mark Dickinson
|
bf1039d98c
|
Silence gcc warnings when trying to print an off_t using "lld", on platforms
where off_t has type long (e.g., 64-bit Linux).
|
2009-10-27 21:48:20 +00:00 |
Mark Dickinson
|
e052b64def
|
Use correct conversion specifier and length modifier when printing an
integer of type off_t. Also, don't assume that long long is available.
|
2009-10-26 19:59:23 +00:00 |
Antoine Pitrou
|
1969059327
|
Issue #6215: backport the 3.1 io lib
|
2009-06-12 20:14:08 +00:00 |