You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
using 32-bit Python 3.4.1, library built for x86, running on a 64-bit Windows machine
Any function expecting Int32 seems to fail
Functions expecting Int64 are ok
So calling DateTime(Int32, Int32, Int32) throws:
TypeError: no constructor matches given arguments
import clr
from System import DateTime
d2 = DateTime(2000,1,1)
using 32-bit Python 3.4.1, library built for x86, running on a 64-bit Windows machine
Any function expecting Int32 seems to fail
Functions expecting Int64 are ok
So calling DateTime(Int32, Int32, Int32) throws:
TypeError: no constructor matches given arguments
while calling DateTime(Int64) is ok:
Both functions work fine if I comment out lines 412-415 in Python.Runtime/converter.cs:
But I'm not sure if there are any side effects
The text was updated successfully, but these errors were encountered: