Path: csiph.com!usenet.pasdenom.info!aioe.org!news.stack.nl!newsfeed.xs4all.nl!newsfeed2.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.032 X-Spam-Evidence: '*H*': 0.94; '*S*': 0.00; 'binary': 0.07; 'subject:module': 0.09; 'url:github': 0.09; 'cc:addr:python-list': 0.11; 'file;': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'url:py': 0.16; 'utterly': 0.16; 'wrote:': 0.18; 'commit': 0.19; 'feb': 0.22; 'cc:addr:python.org': 0.22; 'cc:2**0': 0.24; "i've": 0.25; 'source': 0.25; 'changes,': 0.26; 'header:In-Reply-To:1': 0.27; 'am,': 0.29; 'message- id:@mail.gmail.com': 0.30; 'code': 0.31; 'too.': 0.31; 'file': 0.32; 'there.': 0.32; 'fri,': 0.33; 'but': 0.35; 'received:google.com': 0.35; 'easily': 0.37; 'though,': 0.39; 'changed': 0.39; 'space': 0.40; 'save': 0.62; 'click': 0.77; 'savings': 0.81; 'space...': 0.84; 'url:master': 0.84; 'habit': 0.91; 'to:none': 0.92 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:cc :content-type; bh=gVAbfVngSxBaj01DPR6IO30YUXRpgFqN57jHOfCS50s=; b=qgoB992BwPzcVM9bZ/bzJ2qgRx34esYBu9UfdP4IhnkPtFLNrf5oH2kAkhyTNbwr3R 7ix5oqxKLwCica5YYiZC4P7klrPxJ4g4svpII0FLDjz231O5CT2vTKyc7dw2eVydSnwN femhFWB4zJa7PR5ESn0jEZX5gR7VJSwshg3hmWfdoHjV/PGBK0XyANQe+gw9/Ar1gYwr lLEdsbL7xSYo1Kx7JD8NYfW7HtGBNKbFPjzohTaKK6LyX8dFLmbqnGk6drikhshkEF06 RBKWnovJgGqIi42PIEBpM7l/M94Lt8M8SkDz2U4VOMBFhO7H/16yOs4T5GLw9AGVoqhh bS0Q== MIME-Version: 1.0 X-Received: by 10.66.160.2 with SMTP id xg2mr15750116pab.23.1393516673595; Thu, 27 Feb 2014 07:57:53 -0800 (PST) In-Reply-To: <360e87d2-4daf-4222-8ebe-51f3e4d1fade@googlegroups.com> References: <02cdd9c7-aef7-4cc7-a813-cd1c9627ceb4@googlegroups.com> <94b1962a-0004-4c5b-b484-972a166b88b5@googlegroups.com> <55525f2c-fd3a-4927-b642-2dbf5eae7e9b@googlegroups.com> <360e87d2-4daf-4222-8ebe-51f3e4d1fade@googlegroups.com> Date: Fri, 28 Feb 2014 02:57:53 +1100 Subject: Re: extend methods of decimal module From: Chris Angelico Cc: "python-list@python.org" Content-Type: text/plain; charset=UTF-8 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 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: 17 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1393516682 news.xs4all.nl 2865 [2001:888:2000:d::a6]:37483 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:67150 On Fri, Feb 28, 2014 at 2:42 AM, Mark H. Harris wrote: >> 1) Why have you committed the code as a .tar.gz file? > > um, to save space... well, I know its tiny, but its just a habit I have... 5kb instead of 25kb... When you commit changes, though, it has to treat it as a completely changed binary file - utterly opaque, and it destroys your space savings too. Normal source code diffs are tiny, and they're readable. Check out the history of this file; you can easily see every change I've made: https://github.com/Rosuav/ExceptExpr/commits/master/find_except_expr.py Click on any commit to see what happened there. It's hard to do that with .tar.gz blobs. ChrisA