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
0318fd60
Commit
0318fd60
authored
Jun 05, 1997
by
Roger E. Masse
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moved the definition of posix_times__doc__ to outside of #ifdef HAVE_TIMES
so that MSVC 4.2 doesn't complain under NT.
parent
1830afb4
Changes
1
Show 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 @
0318fd60
...
...
@@ -1459,9 +1459,6 @@ posix_symlink(self, args)
#ifndef HZ
#define HZ 60
/* Universal constant :-) */
#endif
/* HZ */
static
char
posix_times__doc__
[]
=
"times() -> (utime, stime, cutime, cstime, elapsed_time)
\n
\
Return a tuple of floating point numbers indicating process times."
;
static
PyObject
*
posix_times
(
self
,
args
)
...
...
@@ -1506,6 +1503,9 @@ posix_times(self, args)
(
double
)
0
);
}
#endif
/* MS_WIN32 */
static
char
posix_times__doc__
[]
=
"times() -> (utime, stime, cutime, cstime, elapsed_time)
\n
\
Return a tuple of floating point numbers indicating process times."
;
#ifdef HAVE_SETSID
...
...
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