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 8517569
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T05:44:18+00:00 2026-06-11T05:44:18+00:00

Suppose there’s a set of class Map1,Map2,Map3,… all extended from BaseMap, and I use

  • 0

Suppose there’s a set of class Map1,Map2,Map3,… all extended from BaseMap, and I use some reflection mechanism to get the child Map’s instance. I want to dynamically get an instance of one of these classes and store it in a variable m, and have pydev recognize the type as BaseMap so I can use word completion on it.

I found one solution is to add the code

if False:
    m = BaseMap(0,0,0)

after assigning m and before using it. The line inside the if condition would never be executed, but it declares m is a BaseMap type object.

This may look silly, but it did work. Is there any other way to do it?

  • 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-06-11T05:44:20+00:00Added an answer on June 11, 2026 at 5:44 am

    You can use assert isinstance(...) to get autocompletion in pydev on variables where otherwise pydev would not be able to guess the correct type.

    Say your code is:

    m = getAttr(someThing, 'someAttr')
    m.*no autocompletion*
    

    pydev would not be able to know the type of m and therefore won’t show the autocompletion.

    Try:

    m = getAttr(someThing, 'someAttr')
    assert isinstance(m, BaseMap) # or whatever class it is
    m.*pydev shows autocompletion*
    

    It’s somewhat hacky, but it will work (and also does not hurt).

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

Sidebar

Related Questions

Suppose There are some activity. I want to start another activity from the main
Suppose there is a System A which gives some output. This output is used
Suppose there is a SQL statement: select * from A order by cola In
Suppose there in an interface Displaceable and a class Circle which implements Displaceable. Displaceable
Suppose there are two executables. One is mine and the other is some other
Suppose there are 10,000 JPEG, PNG images in a gallery, how to find all
Suppose there is a frame with some image.I want to display only those parts
suppose there is a bookList View (with books as it's model) and some book
Suppose there is a jdbc code running some CRUD operations. Now, in a particular
Suppose there is a some string: std::string some_string = some_string; And I want to

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.