9fans archive / 2008 / 05 / 15    prev next

search terms are split using tokenize from:regexp searches From: lines subject:regexp searches Subject: lines before:yyyy[/mm[/dd]] and after:yyyy[/mm[/dd]] specify date range powered by grep(1)
From: John Barham <jbarham@gma...> Subject: A new language for Plan 9 Date: Thu, 1 May 2008 21:39:31 -0700 Rob Pike wrote: > I have lots of other examples of lesser disasters. As code grows, > white space indentation becomes ever more problematic. It's a > maintenance disaster. I beg to differ, at least when it comes to my experience working w/ Python. I work day in and day out on a 50,000+ line Python application and can't recall a single bug that was caused by whitespace indentation. But granted Python is better hand-written than generated... Working on a constantly moving code-base I've experienced more problems due to Python's dynamic typing, but that's a double-edged sword and on balance it's still a big plus. John