Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!gegeweb.org!de-l.enfer-du-nord.net!feeder2.enfer-du-nord.net!feeds.phibee-telecom.net!newsfeed.xs4all.nl!newsfeed6.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.041 X-Spam-Evidence: '*H*': 0.93; '*S*': 0.01; 'terry': 0.07; 'modulo': 0.09; 'e.g': 0.16; 'nick': 0.16; 'reedy': 0.16; 'subject:syntax': 0.16; 'cc:addr:python-list': 0.16; 'wrote:': 0.18; 'header:In- Reply-To:1': 0.22; 'fact': 0.27; 'cc:addr:python.org': 0.29; 'does': 0.32; 'cc:2**1': 0.36; 'received:org': 0.38; 'here': 0.65; 'reply-to:no real name:2**0': 0.72; 'header:Reply-to:1': 0.84; 'calculations': 0.84 X-Quarantine-ID: X-Amavis-Alert: BAD HEADER SECTION, Duplicate header field: "Cc" To: Terry Reedy From: Nick Dokos Subject: Re: Verbose and flexible args and kwargs syntax In-Reply-To: Message from Terry Reedy of "Mon, 12 Dec 2011 10:36:36 EST." References: <4ee554a3$0$11091$c3e8da3@news.astraweb.com> <9klr6aF2ovU1@mid.individual.net> Organization: HPCS X-Mailer: MH-E 8.3; nmh 1.3; GNU Emacs 24.0.90 Date: Mon, 12 Dec 2011 10:55:44 -0500 Sender: nick@dokosmarshall.org Cc: python-list@python.org X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 Precedence: list Reply-To: nicholas.dokos@hp.com 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: 15 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1323705882 news.xs4all.nl 6945 [2001:888:2000:d::a6]:56368 X-Complaints-To: abuse@xs4all.nl Xref: x330-a1.tempe.blueboxinc.net comp.lang.python:17053 Terry Reedy wrote: > calculations are helped by the fact that (a+b) % c == a%c + b%c, so As long as we understand that == here does not mean "equal", only "congruent modulo c", e.g try a = 13, b = 12, c = 7. Nick