Message7296

Author wbrana
Recipients wbrana
Date 2012-06-30.18:03:12
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1341079392.34.0.371654207592.issue1942@psf.upfronthosting.co.za>
In-reply-to
Content
Jython trunk is missing function os.mkfifo

Jython 2.7.0a2+ (default:e4afcd777d1b, Jun 30 2012, 19:33:52) 
[Java HotSpot(TM) 64-Bit Server VM (Sun Microsystems Inc.)] on java1.6.0_33
Type "help", "copyright", "credits" or "license" for more information.
>>> import os
>>> dir(os.mkfifo)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute 'mkfifo'
>>> 
inst@local /mnt/md3/cache/inst/jython $ python
Python 2.7.3 (default, May  5 2012, 10:54:18) 
[GCC 4.4.7] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import os
>>> dir(os.mkfifo)
['__call__', '__class__', '__cmp__', '__delattr__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__gt__', '__hash__', '__init__', '__le__', '__lt__', '__module__', '__name__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__self__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__']
History
Date User Action Args
2012-06-30 18:03:12wbranasetrecipients: + wbrana
2012-06-30 18:03:12wbranasetmessageid: <1341079392.34.0.371654207592.issue1942@psf.upfronthosting.co.za>
2012-06-30 18:03:12wbranalinkissue1942 messages
2012-06-30 18:03:12wbranacreate