Kill raw_open()

This commit is contained in:
Antoine Pitrou 2013-11-16 19:55:30 +01:00
parent 4ddef5a086
commit 4318de0442
1 changed files with 0 additions and 6 deletions

View File

@ -630,12 +630,6 @@ The ``open()`` method provides a file opening API similar to the builtin
...
'#!/usr/bin/env python3\n'
The ``raw_open()`` method, on the other hand, is similar to ``os.open``::
>>> fd = p.raw_open(os.O_RDONLY)
>>> os.read(fd, 15)
b'#!/usr/bin/env '
Filesystem modification
-----------------------