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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T16:10:40+00:00 2026-06-11T16:10:40+00:00

I was writing a decorator that needs to access private variables and found this

  • 0

I was writing a decorator that needs to access private variables and found this discrepancy. Can anyone explain this?

(Python 2.5)

Naming mangling works as expected for attributes defined in the class:

>>> class Tester(object):
...    __foo = "hi"

>>> t = Tester()
>>> t._Tester__foo
'hi'

Instance attributes do not work (and this is the way we are supposed to do it right?)

>>> class Tester(object):
...     def __init__(self):
...         self.__foo = "hi"

>>> t = Tester()
>>> t._Tester__foo
AttributeError: 'Tester' object has no attribute '_Tester__foo'

P.S. Is “class attribute” the right word for these? They aren’t static, but if you make one of those a list, or some other mutable type, it is shared…

Update

In fact, second example works fine, too. It was a hardware issue (restart helped).

  • 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-11T16:10:41+00:00Added an answer on June 11, 2026 at 4:10 pm

    That is actually not correct.

    Name mangling takes place at class creation time; any functions that refer to mangled names are adjusted as well.

    I cannot reproduce your example, at least not in Python versions 2.4, 2.5, 2.6, 3.1 and 3.2 on the Mac:

    >>> class Tester(object):
    ...     def __init__(self):
    ...         self.__foo = "hi"
    ... 
    >>> Tester()._Tester__foo
    'hi'
    >>> Tester().__foo
    Traceback (most recent call last):
      File "<stdin>", line 1, in <module>
    AttributeError: 'Tester' object has no attribute '__foo'
    

    If you disassemble the function bytecode you can see the name has been mangled as well:

    >>> import dis
    >>> dis.dis(Tester.__init__)
      3           0 LOAD_CONST               1 ('hi')
                  3 LOAD_FAST                0 (self)
                  6 STORE_ATTR               1 (_Tester__foo)
                  9 LOAD_CONST               0 (None)
                 12 RETURN_VALUE        
    

    I’ve checked the compiler source and all names are run through the mangler, a code path that has remained the same since 2002 at least.

    And yes, class attributes and instance attributes are the correct terms. Class attributes are always shared, but assignment to an attribute on an instance assigns to the instance. Mutating a list or other mutable objects is not the same as attribute assignment.

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

Sidebar

Related Questions

I am writing a decorator that needs to call other functions prior to call
Writing htaccess that allows me to remove index.php from the URL can confuse search
Writing a python program, and I came up with this error while using the
Is there any way of writing a decorator such that the following would work?
I'm writing a decorator for methods that must inspect the parent methods (the methods
I am writing a function decorator that will apply a conversion to the first
I have heard that MbUnit comes with pretty nice test decorators which allow writing
Writing a test app to emulate PIO lines, I have a very simple Python/Tk
Writing documentation in html requires some code examples. What to do with characters that
Writing a client application that sends images to a server via a webservice. As

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.