Re: [Python-Dev] Proposal to revert r54204 (splitext change)

2007-03-19 Thread Steve Holden
t isn't this, despite the force or otherwise of your arguments, simply *you* "digging in" in response to what you perceive as Martin's truculence? There's little point at this stage repeating arguments you have already put forward, since those who were convinced by them rem

Re: [Python-Dev] r54457 - python/trunk/Doc/whatsnew/whatsnew26.tex

2007-03-20 Thread Steve Holden
ot" whose title makes it clear this is a moving target and, among other things, whose content points the user at a definitive (set of) URL(s) for the latest information. Putting this information in "What's New" (except possibly for mentioning the creation of this new docu

Re: [Python-Dev] HTTP responses and errors

2007-03-28 Thread Steve Holden
#x27;s confusing. >> >> So, you-people-in-the-list, do you think fix this will be a problem? > > The proper English word for plural "you" is "y'all". ;-) Except for > "all y'all". Isn't English fun? That's not Engl

Re: [Python-Dev] A Survey on Defect Management Practices in Free/Open Source Software

2007-04-04 Thread Steve Holden
ting, saving, etc.) > in a database. I asked "so what did you learn from this data?", and > was told that no one has analyzed it; they're just *accumulating* the > data. It's stamp collecting as computer science. > > --amk, who save his files every 87.4 seconds

Re: [Python-Dev] context manager - generator interaction?

2007-04-06 Thread Steve Holden
make the scope of a try clause too broad, covering a larger span of code that necessary so that the except clause is triggered by unanticipated exceptions. Try to ensure that a try clause applies to the fewest possible statements to avoid these issues. regards Steve -- Steve

Re: [Python-Dev] whitespace normalization

2007-04-25 Thread Steve Holden
ent does ever break anything it should be more > tracable). +1 Enforcing whitespace correctness on checkin has the added advantage that we will be able to screw another 1% out of uncle Timmy, who will no longer have to make his repeated whitespace correction checkins and will therefore have time fo

Re: [Python-Dev] [Python-3000] Pre-pre PEP for 'super' keyword

2007-05-04 Thread Steve Holden
; is part of some other grammatical construct, generally a statement > or operator of some kind, so I tend to think of those differently. > > How about "a keyword is an identifier that appears as a literal in the grammar"? regards Steve -- Steve Holden+1 571 484 6266

Re: [Python-Dev] PEP 30XZ: Simplified Parsing

2007-05-04 Thread Steve Holden
t;"") Alas if the proposal to remove the continuation backslash goes through this may not remain available to us. I realise that the arrival of Py3 means all these are up for grabs, but don't think any of them are really warty enough to require removal. I take the point that octal c

Re: [Python-Dev] Pre-pre PEP for 'super' keyword

2007-05-04 Thread Steve Holden
t access to > it instead. > > BTW, one of my test cases involves multiple super calls in the same method - > there is a *very* large performance improvement by instantiating it once. > And how does speed deteriorate for methods with no uses of super at all (which will

Re: [Python-Dev] PEP 30XZ: Simplified Parsing

2007-05-04 Thread Steve Holden
es.address = addresses.id and addresses.city = cities.id and events.venue = venues.id""", (city,)) It also gives you better error messages from most database back-ends. I realise it makes

Re: [Python-Dev] Changing string constants to byte arrays in Py3k

2007-05-05 Thread Steve Holden
gt; b"abc" could then be a shortcut constructor for this subclass. >> >> In general, I don't think it's a good idea to have literals >> turn into mutable objects, since literals are normally perceived >> as being constant. > > Does that mean you wan

Re: [Python-Dev] Byte literals (was Re: [Python-checkins] Changing string constants to byte arrays ( r55119 - in python/branches/py3k-struni/Lib: codecs.py test/test_codecs.py ))

2007-05-08 Thread Steve Holden
> myself but I don't know where I'd find the time). > I'm having a hard time understanding why bytes literals would be a good thing. OK, displays require the work of creating a new object (since bytes types will be mutable) but surely a mutable literal is always going to make prog

Re: [Python-Dev] Summary of Tracker Issues

2007-05-16 Thread Steve Holden
ar when we should be allowed to hang spammers up by the nuts (assuming they have any) - "not very welcoming" was the phrase, IIRC. So maybe I'm no longer rational on this topic. or-any-other-for-that-matter-ly y'rs - steve -- Steve Holden+1 571 484 6266 +1 80

Re: [Python-Dev] Official version support statement

2007-05-16 Thread Steve Holden
ument describes the development and release schedule for Python 2.5." but it could just as easily say "future releases of the Python 2.X series" or something similar. Which reminds me, that PEP needs updating! regards Steve -- Steve Holden+1 571 484 6266 +1 800 494 311

Re: [Python-Dev] Official version support statement

2007-05-16 Thread Steve Holden
Nick Coghlan wrote: > Steve Holden wrote: >> In which case doesn't it make more sense to use the existing mechanism >> of PEP 356 (Release Schedule)? If something isn't listed in there >> (even without dates) then there are no current plans to release it, >>

[Python-Dev] Proposal / Questions about OrderedDict literals and/or faster C implementation

2011-02-10 Thread Steve Goss
I have a proposal for a literal syntax for OrderedDicts which is just replacing the braces with square brackets: ['a': 1,'b': 2] == OrderedDict([('a', 1),('b', 2)]) OrderedDict literals would follow: [x : x for x in foo()] == OrderedDict([(x,x) for x in foo()]) The rationale for the syntax is t

[Python-Dev] Fwd: deep question re dict as formatting input

2011-02-22 Thread Steve Holden
intended to be used as subscripts. Does this seem sensible? Was it considered during design? Should I alter the materials so that only integer subscripts are used? regards Steve Begin forwarded message: > From: kirby urner > Date: February 22, 2011 2:31:08 PM PST > To: Steve Holden

Re: [Python-Dev] Fwd: deep question re dict as formatting input

2011-02-22 Thread Steve Holden
then it is treated as a number, otherwise > it is used as a string. > That's not strictly true: >>> d = {"Steve":"Holden", "Guido":"van Rossum", 21.2:"float"} >>> d[21.1] Traceback (most recent call last): File "&qu

Re: [Python-Dev] Fwd: deep question re dict as formatting input

2011-02-23 Thread Steve Holden
rporated into the documentation after implementation. Too much of the format() stuff is demonstrated rather than explained. regards Steve ___ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http:

Re: [Python-Dev] Adventures with x64, VS7 and VS8 on Windows

2007-05-21 Thread Steve Holden
etting it up and running and so on > will mean waiting another two years. > Addressing only the issues of PCBuild8 and 64-bit architectures, I have tried to establish "free" buildbot support for the 64-bit architectures without any real success. Should the PSF be considering p

Re: [Python-Dev] The docs, reloaded

2007-05-22 Thread Steve Holden
> them into the computer"). ;-) > But doesn't *everyone* now know that documentation contributions don't have to be marked up? It's certainly been said enough. Maybe that fact should be more prominent in the documentation? Then we'll just have to worry about getting people to

Re: [Python-Dev] The docs, reloaded

2007-05-22 Thread Steve Holden
> documentation isn't available in Sanskrit yet" or "the dog ate my > -> >> changes before I could type them into the computer"). ;-) > -> > -> Steve> But doesn't *everyone* now know that documentation contributions > -> S

Re: [Python-Dev] Summary of Tracker Issues

2007-07-07 Thread Steve Holden
actly the same output since June 9. I can't believe it's useful information. regards Steve -- Steve Holden+1 571 484 6266 +1 800 494 3119 Holden Web LLC/Ltd http://www.holdenweb.com Skype: holdenweb http://del.icio.us/steve.holden --- Asciimercial

Re: [Python-Dev] Summary of Tracker Issues

2007-07-08 Thread Steve Holden
Brett Cannon wrote: > On 7/7/07, Josiah Carlson <[EMAIL PROTECTED]> wrote: >> Steve Holden <[EMAIL PROTECTED]> wrote: >>> Tracker wrote: >>>> ACTIVITY SUMMARY (07/01/07 - 07/08/07) >>>> >>>> >>>> Tracker at ht

Re: [Python-Dev] Need help fixing failing Py3k Unittests in py3k-struni

2007-07-11 Thread Steve Holden
uiltin >>> module is missing from config.c. Again, this is not so easy to fix, >>> because the ftruncate function does not exist on Windows. >>> >> I don't have a Windows box; contributions to fix this situation are welcome. >> > > You would

Re: [Python-Dev] Add a -z interpreter flag to execute a zip file

2007-07-13 Thread Steve Holden
able and lest subject to confusion. regards Steve -- Steve Holden+1 571 484 6266 +1 800 494 3119 Holden Web LLC/Ltd http://www.holdenweb.com Skype: holdenweb http://del.icio.us/steve.holden --- Asciimercial -- Get on the web: Blog, lens and tag th

Re: [Python-Dev] Subversion branch merging

2007-07-13 Thread Steve Holden
e a stupid git to run Windows". regards Steve -- Steve Holden+1 571 484 6266 +1 800 494 3119 Holden Web LLC/Ltd http://www.holdenweb.com Skype: holdenweb http://del.icio.us/steve.holden --- Asciimercial -- Get on the web: Blog, lens and tag t

Re: [Python-Dev] Two spaces or one?

2007-07-24 Thread Steve Holden
s are used to separate sentences. One space (for > example, G. D. Montanaro) following a period is considered a non-breakable > space. > How very twentieth-century :-) regards Steve -- Steve Holden+1 571 484 6266 +1 800 494 3119 Holden Web LLC/Ltd http://www

[Python-Dev] Cygwin: Problem detecting subprocess termination after _spawn_posix in distutils?

2007-07-30 Thread Steve Holden
i686-2.5/libImaging/Chops.o Are we done yet? Waiting on pid 3244 Got pid, status 3244 0 Got WIFEXITED 0 So it appears unlikely to be gcc-specific, leaving me wondering what exactly is the difference between the build environment and my tests. It would be really nice if test_distutils showed any

Re: [Python-Dev] Cygwin: Problem detecting subprocess termination after _spawn_posix in distutils?

2007-07-31 Thread Steve Holden
etup.py install running install running build running build_py running build_ext building '_imaging' extension !::=::\ !C:=C:\cygwin\bin ALLUSERSPROFILE=C:\Documents and Settings\All Users APPDATA=C:\Documents and Settings\sholden\Application Data APR_ICONV_PATH=C:\Program Files\Subversion\iconv

Re: [Python-Dev] Cygwin: Problem detecting subprocess termination after _spawn_posix in distutils?

2007-08-01 Thread Steve Holden
other test out of this dreadfully irritating bug. Thanks again for looking at this. regards Steve -- Steve Holden+1 571 484 6266 +1 800 494 3119 Holden Web LLC/Ltd http://www.holdenweb.com Skype: holdenweb http://del.icio.us/steve.holden --- Asciimercial

Re: [Python-Dev] make iter() return an empty iterator?

2007-08-03 Thread Steve Holden
o return an empty iterator? > > I'm +0 for the latter. > > > -1. I'm a heavy user of iterators on finite and infinite streams and, > for me, iter() is an error that I do not want to paper over. The > alternate logic implies, e.g ., len() should return 0. >

Re: [Python-Dev] Documentation switch imminent

2007-08-17 Thread Steve Holden
age Style->No Style), but it > didn't affect the initial rendering speed. However, scrolling was > *much* faster without CSS. > Probably because the positional calculations are more straightforward then. regards Steve -- Steve Holden+1 571 484 6266 +1 800 494 3119 Holde

Re: [Python-Dev] Cygwin: Problem detecting subprocess termination after _spawn_posix in distutils?

2007-08-20 Thread Steve Holden
Steve Holden wrote: > Martin v. Löwis wrote: >>> The only environment variables that don't appear in the shell output >>> from the env command are INFOPATH, MAKE_MODE and PLAT. I am still flummoxed. >> At this point, I'd recommend to perform a cygwin update;

Re: [Python-Dev] Removing the GIL (Me, not you!)

2007-09-13 Thread Steve Holden
ing, the object continues to > live. Such objects could also start out with a refcount of sys.maxint > or so to ensure that calls to the no-op deallocator are unlikely. > The thought of adding references is amusing. What happens when a refcount becomes negative by overflow? I know, I sh

Re: [Python-Dev] Removing the GIL (Me, not you!)

2007-09-14 Thread Steve Holden
nning - a month or two could do it on a 32bit platform). > Could each class define the value to be added to or subtracted from the refcount? We'd only need a bit to store the value (since it would always be zero or one), but the execution time might increase quite a lot if there's n

Re: [Python-Dev] [python] Re: New lines, carriage returns, and Windows

2007-10-01 Thread Steve Holden
ronPython is that you don't *need* any > wrappers - you access .NET objects natively (which in fact wrap the > lower level win32 API) - and the .NET APIs are usually not as bad as you > probably assume. ;-) > This thread might represent an argument that you *do* need wrappers ...

Re: [Python-Dev] possible string formatting bug

2007-10-08 Thread Steve Holden
4 (cygming special, gdc 0.12, using dmd 0.125)] on cygwin Type "help", "copyright", "credits" or "license" for more information. >>> "%%(%s)=%%s" % "hello" '%(hello)=%s' >>> I suspect the problem may lie somewhe

Re: [Python-Dev] C Decimal - is there any interest?

2007-10-16 Thread Steve Holden
an cost (It's just > > I will prepare, just for decimal.py, a benchmark that is a mix of all > operations and use (a mix of common operations like add, not so used > ones like log10, context switching, exceptions raised, etc). You can > use this if you want, to measure also

Re: [Python-Dev] Proposal for new 2to23 tool

2007-11-12 Thread Steve Holden
se, even if you had such a system, the generated > code wouldn't look anything like well-formed Python and would be a > maintenance nightmare. > Besides which, the migration path is already well-specified: write in 3.x-compatible 2.6 and use 2to3 to migrate the code with no further p

Re: [Python-Dev] Build Notes for building trunk with Visual Studio 2008 Express Edition

2007-11-23 Thread Steve Holden
nses since I was under the impression that restricted > algorithms are disabled by default. > > I've disabled IDEA in the makefiles and configure headers of openssl. > I've also added another step to the makefile patcher in build_ssl. It > makes sure that the three algorith

Re: [Python-Dev] [poll] New name for __builtins__

2007-11-28 Thread Steve Holden
the module namespace. I doubt many people would want to replace "global" with "module". What's it being replaced with in 3.x? regards Steve -- Steve Holden+1 571 484 6266 +1 800 494 3119 Holden Web LLC http://www.holdenweb.com/ __

Re: [Python-Dev] PATCH: Fast globals/builtins lookups for 2.6

2007-11-30 Thread Steve Holden
ake > a bit more time with 64 bits, though. > That's a good local optimization for today's conditions, probably. Who nows whether it will survive the next ten years. And decisions like that have a weird habit of running into pathological cases whose authors curse you when they fi

Re: [Python-Dev] -O2 faster than -O3?

2007-11-30 Thread Steve Holden
7;t take into account the different options that were used to compile existing object files. Without the "make clean" it says "aha, here's a nice up-to-date object file, I'll use that" and you don't get a freshly-compiled version. Touching the sources should als

[Python-Dev] [Fwd: Re: -O2 faster than -O3?]

2007-11-30 Thread Steve Holden
[Sorry, the send key pressed itself there] Touching the sources should also work, and is a little quicker (but this is usually only practical for small projects). regards Steve -- Steve Holden+1 571 484 6266 +1 800 494 3119 Holden Web LLC http://www.holdenweb.com

Re: [Python-Dev] Split up the c-api documentation in smaller files?

2007-12-07 Thread Steve Holden
s Titus has just uploaded about seventy (70!) new projects I am unsure as to how long it would have to wait ti get in the queue. regards Steve -- Steve Holden+1 571 484 6266 +1 800 494 3119 Holden Web LLC http://www.holdenweb.com/

Re: [Python-Dev] PEP Idea: Syntactic sugar for StopIteration.

2007-12-08 Thread Steve Holden
seems ugly and unnecessary to me. I'd rather consider Icon's "break break" to exit two levels of looping, but I don't see that flying either. You still haven't made a convincing use case for "yield break", IMHO. regards Steve -- Steve Holden+1 5

Re: [Python-Dev] svn.python.org ?

2007-12-22 Thread Steve Holden
Joseph Armbruster wrote: > Is svn.python.org ok? I am unable to perform an update at the moment. > Looks like a transient or location-related problem - I am getting an update as I write. regards Steve -- Steve Holden+1 571 484 6266 +1 800 494 3119 Holden Web LLC

Re: [Python-Dev] svn.python.org ?

2007-12-22 Thread Steve Holden
/sandbox/trunk/2to3': could not connect > to server (http://svn.python.org) > > Something seems amiss. > Guess my previous output didn't apply to the sandbox. Sorry. regards Steve -- Steve Holden+1 571 484 6266 +1 800 494 3119 Holden Web LLC http://

Re: [Python-Dev] pkgutil, pkg_resource and Python 3.0 name space packages

2008-01-09 Thread Steve Holden
uters/ was totally alien to the Windows mindset. looking-at-Vista-and-thinking-very-hard-ly y'rs - steve -- Steve Holden+1 571 484 6266 +1 800 494 3119 Holden Web LLC http://www.holdenweb.com/ ___ Python-Dev ma

Re: [Python-Dev] Backporting PEP 3101 to 2.6

2008-01-11 Thread Steve Holden
mpotent? Couldn't if isinstance(result, str): result = unicode(result) avoid repeating in Python a test already made in C by re-spelling it as result = unicode(result) or have you hand-waved away important details that mean the test really is require

Re: [Python-Dev] Monkeypatching idioms -- elegant or ugly?

2008-01-15 Thread Steve Holden
hat it *should* feel a little gross > when you have to do it, so the code I've written that does > monkeypatching for real is generally a bit ugly. Yes, monkeypatching should never be formalized to the point where novices see it as other than a tool of last resort. Otherwise a user b

Re: [Python-Dev] Rationale for NamedTemporaryFile revisited [SEC=UNCLASSIFIED]

2008-01-17 Thread Steve Holden
id.seek(0) data = fid.read() print data fid.close() By the way, this is the sort of topic normally reserved for comp.lang.python, whose denizens would have straightened you out in no time flat. regards Steve > Cheers > Ole Nielsen, Geoscience Australia > > > -Original M

Re: [Python-Dev] Priorities in the tracker

2008-01-20 Thread Steve Holden
aspects of issue processing, for example to ensure that priority gets set by a "responsible" reviewer. However whether such workflow should be imposed by automation or simply a discipline of development I'm not in a position to say. regards Steve -- Steve Holden+1 57

Re: [Python-Dev] PEP: per user site-packages directory

2008-01-21 Thread Steve Holden
eat job 98% of the time. Maybe once we get easy_install as a part of the core (so there's no need to find and run ez_setup.py to start with) things will start to improve. This is an issue the whole developer community needs to take seriously if we are interested in increasing take-up.

Re: [Python-Dev] PEP: per user site-packages directory

2008-01-21 Thread Steve Holden
Christian Heimes wrote: > Steve Holden wrote: >> Maybe once we get easy_install as a part of the core (so there's no need >> to find and run ez_setup.py to start with) things will start to improve. >> This is an issue the whole developer community needs to take seriously

Re: [Python-Dev] PEP 365 (was Re: PEP: per user site-packages directory)

2008-01-21 Thread Steve Holden
Phillip J. Eby wrote: > At 01:06 AM 1/22/2008 +1000, Nick Coghlan wrote: >> Steve Holden wrote: >>> Christian Heimes wrote: >>>> Steve Holden wrote: >>>>> Maybe once we get easy_install as a part of the core (so there's no need >>>>>

Re: [Python-Dev] 2.5.2 release coming up

2008-01-23 Thread Steve Holden
patch? I can't bring myself to believe that 1745035 is really "important" enough. regards Steve -- Steve Holden+1 571 484 6266 +1 800 494 3119 Holden Web LLC http://www.holdenweb.com/ ___ Python-Dev mailing lis

Re: [Python-Dev] 2.5.2 release coming up

2008-01-23 Thread Steve Holden
Guido van Rossum wrote: > On Jan 23, 2008 12:25 PM, Steve Holden <[EMAIL PROTECTED]> wrote: >> Giampaolo Rodola' wrote: >>>> Also, *nothing* should go into the 2.4 branch any more *except* >>>> important security patches. >> ^ >&g

Re: [Python-Dev] trunc()

2008-01-25 Thread Steve Holden
out with deprecation warnings of this type. What's next: "This isn't Perl" when someone tries to add a number and a string? Surely the place to raise warnings is in 2to3. regards Steve -- Steve Holden+1 571 484 6266 +1 800 494 3119 Holden Web LLC htt

Re: [Python-Dev] Organization of ABC modules

2008-01-25 Thread Steve Holden
c.numbers. Either one would be an > improvement. > abstract_numbers would seem to express the essence without focusing on the mechanism unduly. Of course no sane person would suggest using a keyword, like import abstract numbers Wouldn't want to let reader know what was g

Re: [Python-Dev] Simple syntax proposal: "not is"

2008-01-25 Thread Steve Holden
x27;t sound strong enough to change a > programming language's grammar. > > While I promise you I will remain -1 on the proposal simply because it > doesn't serve any programmer's goals, you've piqued my curiosity -- > can you give an example of what your t

Re: [Python-Dev] trunc()

2008-01-25 Thread Steve Holden
your test values. That was when I found out that MySQL (5.0.41, anyway) doesn't implement the INT() function. What was I saying about standards? regards Steve -- Steve Holden+1 571 484 6266 +1 800 494 3119 Holden Web LLC http://www.holdenweb.com/ __

Re: [Python-Dev] trunc()

2008-01-26 Thread Steve Holden
rning a value of the same type as the input? int(), being a call to a type, should never return a value of another type. regards Steve -- Steve Holden+1 571 484 6266 +1 800 494 3119 Holden Web LLC http://www.holdenweb.com/ _

Re: [Python-Dev] TIOBE Programming Community Index

2008-01-26 Thread Steve Holden
ere you have it. > """ Python is TIOBE's Language of the Year for 2007 Python moves up from 8 to 6 in TIOBE's list of popular programming languages Published: Fri, 18 Jan 2008, 10:30 -0500 """ From http://python.org/, with a link to th

Re: [Python-Dev] Incorrect documentation of the raw_input built-in function

2008-01-28 Thread Steve Holden
output. >> Writing to stdin would be wrong, since it's usually read-only, even >> when connected to a terminal. > > Nowadays, it often is writable I've found, but we still shouldn't assume that. > regards Steve -- Steve Holden+1 571 484 6266 +1

Re: [Python-Dev] trunc()

2008-01-28 Thread Steve Holden
his thread could be truncated. It's got me going round and round. I'm completely floored, and will doubtless end up barking mad - you know, like a ceil. regards Steve -- Steve Holden+1 571 484 6266 +1 800 494 3119 Holden Web LLC http://www.holdenweb.com/ ___

Re: [Python-Dev] trunc()

2008-01-29 Thread Steve Holden
ts lack attributions for the quotes. I see from your headers you have, at least some of the time, been posting via gmane using "mirapoint webmail direct", whatever that is. Perhaps that's the problem? sticking-with-t'bird-despite-its-f

Re: [Python-Dev] trunc()

2008-01-29 Thread Steve Holden
classes were moved into the background. A brief scan of the 2.4 library (the nearest to hand) shows no uses of int() without an argument in the top level modules. There's clearly no point calling int() with a literal integer argument, so its uses for conversion clearly dominate its use as a p

Re: [Python-Dev] Tracker marks my messages as spam :-)

2008-02-01 Thread Steve Holden
at's a low S/N ratio. Even without the digital signature overhead it is still 89 characters from a total of 648 ... it's quite possible that's why his messages are being misinterpreted. regards Steve -- Steve Holden+1 571 484 626

Re: [Python-Dev] Any tips to tell sprinter at PyCon about developing on Windows?

2008-02-03 Thread Steve Holden
;s good to see that the whole burden no longer falls on Tim and Martin. Does VS2008 (Express) coexist peacefully with VS2005, which I need to retain for certain client projects? regards Steve -- Steve Holden+1 571 484 6266 +1 800 494 3119 Holden Web LLC http:

Re: [Python-Dev] svn repo out of disk?

2008-02-11 Thread Steve Holden
o be a temporary) fix by deleting files. Looks like we need to be a little more aggressive with that policy until the replacement machine (due int he next month or two) arrives. Or perhaps we should just add a new disk immediately and relocate some stuff? regards Steve -- St

Re: [Python-Dev] svn repo out of disk?

2008-02-12 Thread Steve Holden
Aahz wrote: > On Mon, Feb 11, 2008, Steve Holden wrote: >> Douglas Napoleone wrote: >>> Not sure if this is effecting the core svn repository or not, but the >>> conference software (also hosted at svn.python.org) is reporting that >>> the disk is full: >>

Re: [Python-Dev] dir() and __all__

2008-02-15 Thread Steve Holden
Maybe classes should have __all__ too, then the people who complain about not being able to declare private class attributes could be pointed at that. regards Steve Guido van Rossum wrote: > It's not consistent with what dir() of a class or instance does though. > > -1. >

Re: [Python-Dev] trunk-math

2008-02-15 Thread Steve Holden
e goals here (discussion is ongoing). But I hope > that the rest of the changes are uncontroversial enough to merit > consideration for possible inclusion in 2.6/3.0. > > Thoughts? > Only one: if this stunning plethora of improvements is likely to benefit by you and Christian having acc

Re: [Python-Dev] Small RFEs and the Bug Tracker

2008-02-18 Thread Steve Holden
r to be "Accepted", "Someday/Maybe", "Design decision needed", "Ready for checkin" and "Unreviewed". OK. maybe "triage" wasn't such a good name for for a four-state condition, but it serves a useful purpose and helps people understa

Re: [Python-Dev] Small RFEs and the Bug Tracker

2008-02-18 Thread Steve Holden
because nobody had time to pay them any attention in six months - nor bugs neither, come to that. regards Steve -- Steve Holden+1 571 484 6266 +1 800 494 3119 Holden Web LLC http://www.holdenweb.com/ ___ Python-Dev mailing li

Re: [Python-Dev] Small RFEs and the Bug Tracker

2008-02-18 Thread Steve Holden
Virgil Dupras wrote: > On 2/18/08, Steve Holden <[EMAIL PROTECTED]> wrote: >> I'm not sure we should be throwing RFE's away with such casual abandon >> just because nobody had time to pay them any attention in six months - >> nor bugs neither, come to tha

Re: [Python-Dev] small Grammar questions

2008-02-19 Thread Steve Holden
, May 18 2007, 16:56:43) [GCC 3.4.4 (cygming special, gdc 0.12, using dmd 0.125)] on cygwin Type "help", "copyright", "credits" or "license" for more information. >>> def eggs((a, )=2.1): ... pass ... >>> Oops. 'def eggs((a, )=(2.1,

Re: [Python-Dev] small Grammar questions

2008-02-19 Thread Steve Holden
Steve Holden wrote: [...] > The one that surprised me was the legality of > > def eggs((a, )=c): > pass > > That just seems like unpacking-abuse to me. > Needless to say, a call that tries to *use* the default value fails horribly, as the parameter form doe

Re: [Python-Dev] Small RFEs and the Bug Tracker

2008-02-21 Thread Steve Holden
t; and fixed for a bug report. > That sounds eminently sensible. So sensible there should be documentation that tells us to do that. Drat it, where's Brett Cannon when you need him? :-) regards Steve -- Steve Holden+1 571 484 6266 +1 800 494 3119 Holden Web LLC

Re: [Python-Dev] Backporting PEP 3127 to trunk

2008-02-22 Thread Steve Holden
#x27;t really see > why the necessity of b'' should be seen as opening the flood gates > to backport everything without regard to whether it makes Py2.6 better. > It certainly doesn't seem to have the same urgency for cases where 2to3 can unambiguously do

Re: [Python-Dev] Small RFEs and the Bug Tracker

2008-02-23 Thread Steve Holden
r team (not necessarily all committers) could help us improve quality and reduce the issue count. Deleting issues purely on grounds of age is simply throwing away useful information to reduce a numeric metric that doesn't really relate directly to quality, and quality assurance is the real poin

Re: [Python-Dev] Proposed revision of PEP 3 (using the issue tracker)

2008-02-24 Thread Steve Holden
y seen the phrase 'works for me' to mean agreement of a >> proposed action of some sort. >> >> Maybe something along the lines of 'can not reproduce' would be better? > > I have to agree with Ron. I honestly thought "works for m

Re: [Python-Dev] No releases tonight

2008-02-29 Thread Steve Holden
u can hold off from committing to > that branch for a little while longer, that would be appreciated. I > will cut 3.0a3 tomorrow (Saturday) as early as possible. > > time-to-start-drinking-ly y'rs, Barry: If you can document the web stuff you have to do I will formalize i

Re: [Python-Dev] Documentation for ability to execute zipfiles & directories

2008-03-04 Thread Steve Holden
to their inappropriate nature by our closeness to and familiarity with them, and I think a major effort to revise their structure (and to a lesser degree their content) could pay itself back many times over in increased user friendliness. Georg's recen

Re: [Python-Dev] Documentation reorganization [was: ... for ability to execute zipfiles & directories]

2008-03-04 Thread Steve Holden
repeat the same material in different contexts (hopefully by including some common documentation source rather than laborious and error-prone copy-and-paste). Document things where people expect to find them. (Now *there's* a usability study screaming to be done ... and SoC is coming up). reg

Re: [Python-Dev] Compiler used to build Python for Windows

2008-03-04 Thread Steve Holden
tool chain like Mingw and one with the latest and greatest MS production line. Unfortunately the problem seems to be developer effort. For a long time only Martin and Tim were serious about the Windows platform, and I can appreciate (some of) the extra effort that parallel development platforms wou

Re: [Python-Dev] Compiler used to build Python for Windows

2008-03-04 Thread Steve Holden
Steven Bethard wrote: > On Tue, Mar 4, 2008 at 5:10 PM, Steve Holden <[EMAIL PROTECTED]> wrote: >> Christian Heimes wrote: >> > Bob Kline wrote: >> >> Any possibility of revisiting this question (upgrading to a more recent >> >> compiler for W

Re: [Python-Dev] Compiler used to build Python for Windows

2008-03-05 Thread Steve Holden
itself without the occasional library compatibility issue), and more freely available. regards Steve -- Steve Holden+1 571 484 6266 +1 800 494 3119 Holden Web LLC http://www.holdenweb.com/ ___ Python-Dev mailing list Pytho

Re: [Python-Dev] BSDDB3

2008-03-06 Thread Steve Holden
nnot say how it is licensed to the PSF for redistribution, nor do I know whether Oracle's acquisition of SleepyCat will affect future versions. Bet it gave the MySQL guys some sleepless nights, though. regards Steve -- Steve Holden+1 571 484 6266 +1 800 494 3119 Holden Web LL

Re: [Python-Dev] 3.0 buildbots all red

2008-03-18 Thread Steve Holden
tracker.) > Make sure you get a screen shot for OnYourDesktop if/when they *do* go green! regards Steve ___ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com

Re: [Python-Dev] First green Windows x64 buildbots!

2008-03-19 Thread Steve Holden
Then put the picture on your screen and SEND ME A SCREENSHOT! regards Steve Neal Norwitz wrote: > Great work Trent! You'll need to take a picture of Martin buying you > the beer once you get the rest green. :-) > > n > > On Wed, Mar 19, 2008 at 5:57 PM, Trent N

Re: [Python-Dev] unittest's redundant assertions: asserts vs. failIf/Unlesses

2008-03-19 Thread Steve Holden
to3). As one is a global statement, and the other is fairly > local, I vote for the change. > As Guido(?) pointed out, this would be acceptable because it's simply different spellings of the same way. regards Steve ___ Python-Dev mail

Re: [Python-Dev] PEP 365 (Adding the pkg_resources module)

2008-03-20 Thread Steve Holden
people are hesitant to actually execute the > procedure. > > Of course, once you *do* provide an entry to "Add/Remove Programs", > uninstalling won't be mere deletion, as mere deletion would still > leave these registry keys behind (although Windows got mor

Re: [Python-Dev] How we can get rid of eggs for 2.6 and beyond

2008-03-22 Thread Steve Holden
ge or other sites with special > download mechanisms > > * scan websites for links > > * make coffee, clean the house, send the kids to school :-) > But a package that *would* do this could be immensely popular. >> And of course, there are still some issu

Re: [Python-Dev] Proposal: from __future__ import unicode_string_literals

2008-03-24 Thread Steve Holden
e in order to get a satisfactory translation into 3.0. Once you start editing 3.0 source you have to either leave the 2.X world behind or accept a dual-source development. regards Steve -- Steve Holden+1 571 484 6266 +1 800 494 3119 Holden Web LLC http://www.holdenweb.c

Re: [Python-Dev] string representation of range in 3.0

2008-04-16 Thread Steve Holden
;repr" consumption of the values? "The next couple of elements" is a dangerous thing to use unless you don't mind them disappearing. And the last one's right out - you;d end up storing lists anyway! regards Steve -- Steve Holden+1 571 484 6266 +1 800 494 3119 H

Re: [Python-Dev] Proposed unittest changes

2008-04-17 Thread Steve Purcell
, which might be a reasonable thing to do with a test suite. Aside from these points, everything else looks great to me. Better "diff-style" output for assertEquals of strings etc. has been lacking for ages, as well as collection-oriented assertions. -Steve P.S. Hi all! ___

Re: [Python-Dev] Proposed unittest changes

2008-04-17 Thread Steve Holden
te and read. (And making it a regex match would be > even cooler.) > In which case assertRaisesMatching (and then eventually assert_raises_matching) might be a better name for it? regards Steve -- Steve Holden+1 571 484 6266 +1 800 494 3119 Holden Web LLC http://www.holdenweb.com/ __

<    8   9   10   11   12   13   14   15   16   >