Replies: 2 comments
-
Internal binary component of PyRFC is renamed to _cyrfc and this should work: from pyrfc._cyrfc import Connection Imports from internal component are not recommended because the internal name could be changed in the future. Recommended usage is from pyrfc import Connection, Decimal Decimal is supported and export was disabled because of the bug. from decimal import Decimal see b9e76cb |
Beta Was this translation helpful? Give feedback.
0 replies
-
Fixed in 2.8.0 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
We have code that imports the following:
from pyrfc.pyrfc import Connection, Decimal
I can no longer import pyrfc.pyrfc after 2.7.0. I can still import pyrfc and it gives me access to Connection. But Decimal is not there as far as i can tell. I might not need it but I didn't want to change my code unless I can verify this is a change that was intentional (is Decimal no longer supported?)
Thanks,
Beta Was this translation helpful? Give feedback.
All reactions