This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author doko
Recipients doko, serhiy.storchaka, vstinner
Date 2015-04-01.17:57:27
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1427911047.61.0.703674633488.issue23842@psf.upfronthosting.co.za>
In-reply-to
Content
no, simpler:

>>> import os
>>> os.minor(os.makedev(8,65))
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
SystemError: ../Objects/longobject.c:998: bad argument to internal function
>>> os.major(os.makedev(8,65))
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
SystemError: ../Objects/longobject.c:998: bad argument to internal function
History
Date User Action Args
2015-04-01 17:57:27dokosetrecipients: + doko, vstinner, serhiy.storchaka
2015-04-01 17:57:27dokosetmessageid: <1427911047.61.0.703674633488.issue23842@psf.upfronthosting.co.za>
2015-04-01 17:57:27dokolinkissue23842 messages
2015-04-01 17:57:27dokocreate