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 Hassan El Karouni
Recipients Hassan El Karouni, vstinner
Date 2015-08-27.10:16:06
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1440670566.54.0.897815732998.issue24944@psf.upfronthosting.co.za>
In-reply-to
Content
fcntl.__file__  returns  "fcntl.py". The file is located under site-packages.
The contents of the file are:
def fcntl(fd, op, arg=0):
    return 0
        
def ioctl(fd, op, arg=0, mutable_flag=True):
    if mutable_flag:
        return 0
    else:
        return ""
    
def flock(fd, op):
    return
      
def lockf(fd, operation, length=0, start=0, whence=0):
    return
History
Date User Action Args
2015-08-27 10:16:06Hassan El Karounisetrecipients: + Hassan El Karouni, vstinner
2015-08-27 10:16:06Hassan El Karounisetmessageid: <1440670566.54.0.897815732998.issue24944@psf.upfronthosting.co.za>
2015-08-27 10:16:06Hassan El Karounilinkissue24944 messages
2015-08-27 10:16:06Hassan El Karounicreate