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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T23:57:08+00:00 2026-06-10T23:57:08+00:00

E.g. is this possible? class Foo(object): class Meta: pass class Bar(Foo): def __init__(self): #

  • 0

E.g. is this possible?

class Foo(object):
    class Meta:
        pass

class Bar(Foo):
    def __init__(self):
        # remove the Meta class here?
        super(Bar, self).__init__()
  • 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-10T23:57:10+00:00Added an answer on June 10, 2026 at 11:57 pm

    You cannot remove class attributes from an inherited base class; you can only mask them, by setting an instance variable with the same name:

    class Bar(Foo):
        def __init__(self):
            self.Meta = None  # Set a new instance variable with the same name
            super(Bar, self).__init__()
    

    Your own class could of course also override it with a class variable:

    class Bar(Foo):
        Meta = None
    
        def __init__(self):
            # Meta is None for *all* instances of Bar.
            super(Bar, self).__init__()
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

When inheriting from two objects like these class Foo(object): def __init__(self,a): self.a=a class Bar(object):
If I have this: class foo(object): @property def bar(self): return 0 f = foo()
If you have the following class: class Foo(object): def __init__(name): self.name = name And
Consider the following python code: class Foo(object): def __init__(self, value): self._value = value @property
Anyone know how to get this to work if it's possible? class Foo def
Why doesn't this change the initial object: public class Foo { Bar item =
Can somebody explain to me why this works (in Python 2.5) : class Foo(object):
I have 2 questions: Why is this possible for an int variable: foo.h: class
Is it possible to create a generic C++ function foo ? foo(Object bar, Object
I have a type like this sealed class Foo[A](val value: A) object Foo {

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.