Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
xmlrpclib が sys とは別の MAXINT を持つには理由があると思います。誰かが私に理由を説明できますか?
>>> print xmlrpclib.MAXINT 2147483647 >>> print sys.maxint 2147483647
サポートできる最大xmlrpclib整数は、システムがサポートできる最大整数とは異なる場合があるためです。
xmlrpclib
>>> sys.maxint 9223372036854775807 >>> xmlrpclib.MAXINT 2147483647L