Message 157989 - Python tracker

Message157989

Author vstinner
Recipients lemburg, neologix, vstinner
Date 2012-04-10.21:34:14
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1334093655.33.0.842095829528.issue14428@psf.upfronthosting.co.za>
In-reply-to
Content
+    if (has_getickcount64) {
+        ULONGLONG ticks;
+        ticks = Py_GetTickCount64();
+        result = (double)ticks * 1e-3
+    }

";" is missing after "1e-3", it does not compile on Windows because of this.
History
Date User Action Args
2012-04-10 21:34:15vstinnersetrecipients: + vstinner, lemburg, neologix
2012-04-10 21:34:15vstinnersetmessageid: <1334093655.33.0.842095829528.issue14428@psf.upfronthosting.co.za>
2012-04-10 21:34:14vstinnerlinkissue14428 messages
2012-04-10 21:34:14vstinnercreate