Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!1.eu.feeder.erje.net!newsfeed.xs4all.nl!newsfeed2a.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.000 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'python.': 0.02; 'init': 0.07; 'variables': 0.07; 'from:addr:ethan': 0.09; 'from:addr:stoneleaf.us': 0.09; 'from:name:ethan furman': 0.09; 'instance.': 0.09; 'message-id:@stoneleaf.us': 0.09; 'prefix': 0.09; 'rewrite': 0.09; 'subject:hide': 0.09; 'variables.': 0.09; '~ethan~': 0.09; 'def': 0.12; 'changes': 0.15; 'length,': 0.16; 'subject:Not': 0.16; 'subject:possible': 0.16; 'valueerror,': 0.16; 'wrote:': 0.18; 'this?': 0.23; 'header:User-Agent:1': 0.23; 'own.': 0.24; 'values': 0.27; 'header:In-Reply-To:1': 0.27; 'raise': 0.29; '(maybe': 0.31; 'class': 0.32; 'quite': 0.32; 'skip:_ 10': 0.34; 'equal': 0.35; 'but': 0.35; 'done,': 0.36; 'charset:us-ascii': 0.36; 'should': 0.36; 'clear': 0.37; 'convention': 0.38; 'handle': 0.38; 'to:addr:python-list': 0.38; 'moving': 0.39; 'to:addr:python.org': 0.39; 'length': 0.61; 'received:173': 0.61; 'content-disposition:inline': 0.62; 'average': 0.93 Date: Tue, 28 Apr 2015 00:56:09 -0700 From: Ethan Furman To: python-list@python.org Subject: Re: Not possible to hide local variables Mail-Followup-To: python-list@python.org References: <874mo0zoz2.fsf@Equus.decebal.nl> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <874mo0zoz2.fsf@Equus.decebal.nl> User-Agent: Mutt/1.5.21 (2010-09-15) X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.20+ Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 27 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1430207777 news.xs4all.nl 2829 [2001:888:2000:d::a6]:59974 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:89488 On 04/28, Cecil Westerhof wrote: > If I remember correctly you can not hide variables of a class or make > them read-only? > > I want to rewrite my moving average to python. The init is: > def __init__(self, length): > if type(length) != int: > raise ParameterError, 'Parameter has to be an int' > if n < 0: > raise ValueError, 'Parameter should be greater or equal 2' > self.length = length > self.old_values = [] > self.current_total = 0 > > But when someone changes length, old_values, or current_total that > would wreck havoc with my class instance. What is the best way to > handle this? Prefix those names with a single leading underscore, which is the convention for private variables. This way, if some user (maybe you! ;) has a good reason to change those values in can be done, but it is quite clear that said user is mucking about with internals and they are on their own. -- ~Ethan~