Message6680

Author amak
Recipients amak, dstromberg, irmen
Date 2011-10-15.17:53:36
SpamBayes Score 2.7249591e-11
Marked as misclassified No
Message-id <1318701216.81.0.314917971048.issue1737@psf.upfronthosting.co.za>
In-reply-to
Content
This platform variability is further confirmed by the lack of the minor() and minor() functions in cpython on windows.

>C:\Python26\python.exe
Python 2.6.4 (r264:75708, Oct 26 2009, 08:23:19) [MSC v.1500 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import os
>>> os.major
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute 'major'
>>> os.minor
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute 'minor'
>>> os.makedev
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute 'makedev'
>>>
History
Date User Action Args
2011-10-15 17:53:36amaksetmessageid: <1318701216.81.0.314917971048.issue1737@psf.upfronthosting.co.za>
2011-10-15 17:53:36amaksetrecipients: + amak, irmen, dstromberg
2011-10-15 17:53:36amaklinkissue1737 messages
2011-10-15 17:53:36amakcreate