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 vajrasky
Recipients pitrou, vajrasky
Date 2013-12-01.14:36:58
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1385908619.09.0.979627399509.issue19852@psf.upfronthosting.co.za>
In-reply-to
Content
In class Path, line 942, you have this comment:

# Public API

but down there, in line 1048, you have this private method:

    def _raw_open(self, flags, mode=0o777):
        """
        Open the file pointed by this path and return a file descriptor,
        as os.open() does.
        """
        if self._closed:
            self._raise_closed()
        return self._accessor.open(self, flags, mode)

Here is the patch to move this private method to where it belongs.
History
Date User Action Args
2013-12-01 14:36:59vajraskysetrecipients: + vajrasky, pitrou
2013-12-01 14:36:59vajraskysetmessageid: <1385908619.09.0.979627399509.issue19852@psf.upfronthosting.co.za>
2013-12-01 14:36:59vajraskylinkissue19852 messages
2013-12-01 14:36:58vajraskycreate