Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6049111
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T07:32:20+00:00 2026-05-23T07:32:20+00:00

I want something like sys.builtin_module_names except for the standard library. Other things that didn’t

  • 0

I want something like sys.builtin_module_names except for the standard library. Other things that didn’t work:

  • sys.modules – only shows modules that have already been loaded
  • sys.prefix – a path that would include non-standard library modules and doesn’t seem to work inside a virtualenv.

The reason I want this list is so that I can pass it to the --ignore-module or --ignore-dir command line options of trace.

So ultimately, I want to know how to ignore all the standard library modules when using trace or sys.settrace.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T07:32:20+00:00Added an answer on May 23, 2026 at 7:32 am

    Why not work out what’s part of the standard library yourself?

    import distutils.sysconfig as sysconfig
    import os
    std_lib = sysconfig.get_python_lib(standard_lib=True)
    for top, dirs, files in os.walk(std_lib):
        for nm in files:
            if nm != '__init__.py' and nm[-3:] == '.py':
                print os.path.join(top, nm)[len(std_lib)+1:-3].replace(os.sep, '.')
    

    gives

    abc
    aifc
    antigravity
    --- a bunch of other files ----
    xml.parsers.expat
    xml.sax.expatreader
    xml.sax.handler
    xml.sax.saxutils
    xml.sax.xmlreader
    xml.sax._exceptions
    

    Edit: You’ll probably want to add a check to avoid site-packages if you need to avoid non-standard library modules.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've got a Python program that reads from sys.stdin , so I can call
Something is happening with one of my class's instance variables. I want to make
I want to login to an https site on the internet with java and
I want to know, when my child process is exiting. But I don't want
I'm trying to type-check the commands I want to send to a server from
this is my first post, and it covers something which I've been trying to
Say I have generated the following binary file: # generate file: python -c 'import
I'm trying to convert the output of vmstat into a CSV file using Python,
If I have a simple object: class MyObject { public string MyValueProperty { get;
I'm python beginner: how can I iterate over csv files in one directory and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.