Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!xlned.com!feeder7.xlned.com!newsfeed.xs4all.nl!newsfeed4.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.018 X-Spam-Evidence: '*H*': 0.96; '*S*': 0.00; 'subject:Python': 0.06; 'exists.': 0.07; 'init': 0.07; 'subject: [': 0.09; 'url:github': 0.09; 'cc:addr:python-list': 0.11; 'random': 0.14; '(code': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'wrote:': 0.18; 'commit': 0.19; 'file,': 0.19; 'cc:addr:python.org': 0.22; 'logical': 0.24; 'cc:2**0': 0.24; "i've": 0.25; 'header:In-Reply-To:1': 0.27; 'idea': 0.28; 'am,': 0.29; 'generally': 0.29; 'tim': 0.29; 'related': 0.29; "doesn't": 0.30; 'said,': 0.30; 'especially': 0.30; 'message- id:@mail.gmail.com': 0.30; 'grouping': 0.31; 'there.': 0.32; 'received:google.com': 0.35; 'add': 0.35; 'there': 0.35; 'version': 0.36; 'really': 0.36; "i'll": 0.36; 'project': 0.37; 'minimum': 0.38; 'subject:]': 0.38; 'that,': 0.38; 'though,': 0.39; 'called': 0.40; 'full': 0.61; 'simple': 0.61; 'save': 0.62; 'more': 0.64; '20,': 0.68; 'jul': 0.74; 'as:': 0.81; 'together,': 0.84; '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=hgSrfZlv6C5xN7bik/VRhRRzPEHpFPZg0OU36fgbtvY=; b=KJQSM4EKv4UtVzRT6M8qG4tG2iaP6nSNBOBtjXIc7hywk9bnfY294qbksnJ/ycat7O uY0OJjDaW+VPOwdM2QsQzxgHeYGpOt1fVa24BbsCusp7etQgdy29ZovppUVvrs/nQdTm sNVB8awo1mRlsByR4rZQic9QqbJ0NFNTZgCMjH7Lsz8FSL4s1a4GxtIxIBCCCwR0nNoe 18S4ryxwefLBzyuq3rL1HEPonD7YRn+RUUoU5/CqKCR46v+mYB8n1RY77m2kDQp/emvc 4mSHOb9yK4aaQiw5fxnKUvnckbweBqlyHU+UQwtpOJus8KAV9yXlBPK/kNtMrT4x/TPY VRIQ== MIME-Version: 1.0 X-Received: by 10.52.98.201 with SMTP id ek9mr14531945vdb.35.1405811974763; Sat, 19 Jul 2014 16:19:34 -0700 (PDT) In-Reply-To: References: <87zjga4j4v.fsf@elektro.pacujo.net> <53c57bae$0$9505$c3e8da3$5496439d@news.astraweb.com> <87iomy4ciy.fsf@elektro.pacujo.net> <53c5f6dc$0$9505$c3e8da3$5496439d@news.astraweb.com> <87egxl4zq8.fsf@elektro.pacujo.net> <53c73ff0$0$29897$c3e8da3$5496439d@news.astraweb.com> <9ef930a0-5a41-4a20-a13a-003c9e8246fe@googlegroups.com> <53c9655a$0$9505$c3e8da3$5496439d@news.astraweb.com> <368c1e4f-9328-445b-9876-9f26560a50c2@googlegroups.com> <53ca1e27$0$9505$c3e8da3$5496439d@news.astraweb.com> <53CAB40A.4030704@cdreimer.com> Date: Sun, 20 Jul 2014 09:19:34 +1000 Subject: Re: Python and IDEs [was Re: Python 3 is killing Python] From: Chris Angelico Cc: Python-List 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: 21 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1405811976 news.xs4all.nl 2963 [2001:888:2000:d::a6]:54752 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:74844 On Sun, Jul 20, 2014 at 7:50 AM, Tim Delaney wrote: > IMO there is no project so modest that it doesn't require version control. > Especially since version control is as simple as: > > cd project > hg init > hg add > hg commit That said, though, there are some projects so modest they don't require dedicated repositories. I have a repo called "shed" - it's a collection of random tools that I've put together, no more logical grouping exists. Generally each one is a single file, although I have a couple of related ones in there. (Code at https://github.com/Rosuav/shed if anyone's curious.) If I have an idea for a program that doesn't really merit a full repo, I'll just save it into shed. Keeps the "where did I put that, what did I call that" to a minimum :) ChrisA