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
a4dac409
Commit
a4dac409
authored
Mar 03, 2005
by
Martin v. Löwis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Patch #645894: Use getrusage for computing the time consumption in
profile.py if available.
parent
7fe60c0a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
2 deletions
+23
-2
Lib/profile.py
Lib/profile.py
+20
-2
Misc/NEWS
Misc/NEWS
+3
-0
No files found.
Lib/profile.py
View file @
a4dac409
...
...
@@ -107,6 +107,20 @@ if hasattr(os, "times"):
t
=
timer
()
return
t
[
0
]
+
t
[
1
]
# Using getrusage(3) is better than clock(3) if available:
# on some systems (e.g. FreeBSD), getrusage has a higher resolution
# Furthermore, on a POSIX system, returns microseconds, which
# wrap around after 36min.
_has_res
=
0
try
:
import
resource
resgetrusage
=
lambda
:
resource
.
getrusage
(
resource
.
RUSAGE_SELF
)
def
_get_time_resource
(
timer
=
resgetrusage
):
t
=
timer
()
return
t
[
0
]
+
t
[
1
]
_has_res
=
1
except
ImportError
:
pass
class
Profile
:
"""Profiler class.
...
...
@@ -159,8 +173,12 @@ class Profile:
bias
=
self
.
bias
self
.
bias
=
bias
# Materialize in local dict for lookup speed.
if
timer
is
None
:
if
os
.
name
==
'mac'
:
if
not
timer
:
if
_has_res
:
self
.
timer
=
resgetrusage
self
.
dispatcher
=
self
.
trace_dispatch
self
.
get_time
=
_get_time_resource
elif
os
.
name
==
'mac'
:
self
.
timer
=
MacOS
.
GetTicks
self
.
dispatcher
=
self
.
trace_dispatch_mac
self
.
get_time
=
_get_time_mac
...
...
Misc/NEWS
View file @
a4dac409
...
...
@@ -64,6 +64,9 @@ Extension Modules
Library
-------
- Patch #645894: Use getrusage for computing the time consumption in
profile.py if available.
- Patch #1046831: Use get_python_version where appropriate in sysconfig.py.
- Patch #1117454: Remove code to special-case cookies without values
...
...
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