Skip to content

[gh-135953] Profile a module or script with sampling profiler #136777

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

lkollar
Copy link
Contributor

@lkollar lkollar commented Jul 19, 2025

Add -m and filename arguments to the sampling profiler to launch the specified Python program in a subprocess and start profiling it. Previously only a PID was accepted, this can now be done by passing -p PID.

Add `-m` and `filename` arguments to the sampling profiler to launch the
specified Python program in a subprocess and start profiling it.
Previously only a PID was accepted, this can now be done by passing
`-p PID`.
@lkollar lkollar marked this pull request as ready for review July 19, 2025 14:59
@pablogsal pablogsal added skip news 🔨 test-with-buildbots Test PR w/ buildbots; report in status section labels Jul 29, 2025
@bedevere-bot
Copy link

🤖 New build scheduled with the buildbot fleet by @pablogsal for commit 1bf048a 🤖

Results will be shown at:

https://buildbot.python.org/all/#/grid?branch=refs%2Fpull%2F136777%2Fmerge

If you want to schedule another build, you need to add the 🔨 test-with-buildbots label again.

@bedevere-bot bedevere-bot removed the 🔨 test-with-buildbots Test PR w/ buildbots; report in status section label Jul 29, 2025
@pablogsal pablogsal requested a review from Copilot July 29, 2025 16:20
Copy link

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

This PR extends the sampling profiler to support profiling modules and scripts by launching them in subprocesses, in addition to the existing PID-based profiling. The change improves the usability of the profiler by allowing users to profile Python programs from startup rather than only attaching to existing processes.

  • Adds -m and script filename arguments as mutually exclusive alternatives to the existing -p PID option
  • Updates argument parsing to handle the new target modes with proper validation
  • Implements subprocess management with graceful termination handling

Reviewed Changes

Copilot reviewed 2 out of 2 changed files in this pull request and generated 3 comments.

File Description
Lib/profile/sample.py Adds argument parsing for module and script modes, implements subprocess launching and management
Lib/test/test_sample_profiler.py Updates existing CLI tests to use -p flag and adds comprehensive test coverage for new module/script functionality
Comments suppressed due to low confidence (1)

Lib/test/test_sample_profiler.py:1637

  • The test uses contextlib.chdir() to change directories for module discovery, but doesn't test the case where the module is not found or the directory change fails. Consider adding a test case for module resolution errors.
            contextlib.chdir(tempdir.name),

Comment on lines +736 to +739
if not(args.pid or args.module or args.script):
parser.error(
"You must specify either a process ID (-p), a module (-m), or a script to run."
)
Copy link
Preview

Copilot AI Jul 29, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The condition not(args.pid or args.module or args.script) is redundant since the mutually exclusive group is already marked as required=True. The argparse library will automatically enforce that one of these options is provided.

Suggested change
if not(args.pid or args.module or args.script):
parser.error(
"You must specify either a process ID (-p), a module (-m), or a script to run."
)
# The mutually exclusive group already enforces that one of these arguments is required.

Copilot uses AI. Check for mistakes.

process = subprocess.Popen(cmd)

try:
exit_code = process.wait(timeout=0.1)
Copy link
Preview

Copilot AI Jul 29, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The hardcoded timeout of 0.1 seconds is a magic number. Consider defining this as a named constant or making it configurable, as some programs may have longer startup times.

Suggested change
exit_code = process.wait(timeout=0.1)
exit_code = process.wait(timeout=DEFAULT_PROCESS_WAIT_TIMEOUT)

Copilot uses AI. Check for mistakes.

if process.poll() is None:
process.terminate()
try:
process.wait(timeout=2)
Copy link
Preview

Copilot AI Jul 29, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The hardcoded timeout of 2 seconds for graceful termination is a magic number. Consider defining this as a named constant for better maintainability.

Suggested change
process.wait(timeout=2)
process.wait(timeout=GRACEFUL_TERMINATION_TIMEOUT_SEC)

Copilot uses AI. Check for mistakes.

process = subprocess.Popen(cmd)

try:
exit_code = process.wait(timeout=0.1)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hummm, why is this? Just in case the process fails immediately?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy