Re: [Python-Dev] r86351 - python/branches/py3k/Lib/tempfile.py

2010-11-09 Thread Nick Coghlan
On Tue, Nov 9, 2010 at 10:00 PM, Antoine Pitrou wrote: >> -    characters = ("abcdefghijklmnopqrstuvwxyz" + >> -                  "ABCDEFGHIJKLMNOPQRSTUVWXYZ" + >> -                  "0123456789_") >> +    characters = "abcdefghijklmnopqrstuvwxyz0123456789_" > > Aren't you reducing entropy here?

Re: [Python-Dev] r86351 - python/branches/py3k/Lib/tempfile.py

2010-11-09 Thread Antoine Pitrou
On Tue, 9 Nov 2010 04:43:58 +0100 (CET) raymond.hettinger wrote: > Author: raymond.hettinger > Date: Tue Nov 9 04:43:58 2010 > New Revision: 86351 > > Log: > Simplify code > > Modified: >python/branches/py3k/Lib/tempfile.py > > Modified: python/branches/py3k/Lib/tempfile.py >