Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
c18b3082
Commit
c18b3082
authored
Oct 11, 2002
by
Neal Norwitz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix a few docstrings, remove extra commas
parent
520cdf73
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
Modules/posixmodule.c
Modules/posixmodule.c
+3
-3
No files found.
Modules/posixmodule.c
View file @
c18b3082
...
...
@@ -4969,7 +4969,7 @@ posix_fstat(PyObject *self, PyObject *args)
PyDoc_STRVAR
(
posix_fdopen__doc__
,
"fdopen(fd
,
[, mode='r' [, bufsize]]) -> file_object
\n\n
\
"fdopen(fd [, mode='r' [, bufsize]]) -> file_object
\n\n
\
Return an open file object connected to a file descriptor."
);
static
PyObject
*
...
...
@@ -5064,7 +5064,7 @@ posix_pipe(PyObject *self, PyObject *args)
#ifdef HAVE_MKFIFO
PyDoc_STRVAR
(
posix_mkfifo__doc__
,
"mkfifo(filename
,
[, mode=0666])
\n\n
\
"mkfifo(filename [, mode=0666])
\n\n
\
Create a FIFO (a POSIX named pipe)."
);
static
PyObject
*
...
...
@@ -5088,7 +5088,7 @@ posix_mkfifo(PyObject *self, PyObject *args)
#if defined(HAVE_MKNOD) && defined(HAVE_MAKEDEV)
PyDoc_STRVAR
(
posix_mknod__doc__
,
"mknod(filename
,
[, mode=0600, device])
\n\n
\
"mknod(filename [, mode=0600, device])
\n\n
\
Create a filesystem node (file, device special file or named pipe)
\n
\
named filename. mode specifies both the permissions to use and the
\n
\
type of node to be created, being combined (bitwise OR) with one of
\n
\
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment