Prev: use python as a calculator
Next: mod_python and css
From: GrayShark on 25 Jun 2010 10:02 On Fri, 25 Jun 2010 01:29:22 +0000, Benjamin Peterson wrote: > GrayShark <howe.steven <at> gmail.com> writes: > >> Sorry, I meant "from string import lowercase, uppercase" > > Technically, you should use ascii_lowercase and ascii_uppercase, though > I don't know if that's the cause of pylint's complaints. Thanks for the suggestion. I gave it a quick try. Same 'warning'. No, using the string module is the issue. Perhaps I'll just ignore it. sph
From: Terry Reedy on 25 Jun 2010 16:10 On 6/25/2010 10:02 AM, GrayShark wrote: > Thanks for the suggestion. I gave it a quick try. Same 'warning'. No, > using the string module is the issue. Perhaps I'll just ignore it. And what about the next naive user of pylint? Submitting a bug report to the author of pylint would take much less time than you have *us* to spend helping you. Doing so would be a way of thanking us since then, if pylint were changed, we would not have to answer the same question again in a year. -- Terry Jan Reedy
From: GrayShark on 25 Jun 2010 17:31 Why the rudness Terry Jan Reedy? Get up on the wrong side of the bed? Or worse luck, no one on the other side to create a wrong side? As to your comment about Logilab's pylint. I'v seen a ticket similar to this from three months back. I assume they're not fixing it because if you review 'string' via pydoc you'd read this: --------------------------------------- Help on module string: NAME string - A collection of string operations (most are no longer used). FILE /usr/lib64/python2.6/string.py DESCRIPTION Warning: most of the code you see here isn't normally used nowadays. Beginning with Python 1.6, many of these functions are implemented as methods on the standard string object. They used to be implemented by a built-in module called strop, but strop is now obsolete itself. --------------------------------------- Not the 1.6. Seems some serious work went into putting the 'string's functionality into _builtin_. I've seen many 'deprecated' warnings when programming in PyGTK, as modules get replaced or functionality changes. I've always assumed it means that the module will be removed at some future date. An advisory to programmers and users. ---------------------------------------------- You might note what 'deprecated' means. http://www.thefreedictionary.com/ deprecated tr.v. de·pre·cat·ed, de·pre·cat·ing, de·pre·cates 1. To express disapproval of; deplore. 2. To belittle; depreciate. 3. Computer Science To mark (a component of a software standard) as obsolete to warn against its use in the future so that it may be phased out. ----------------------------------------------- Not the third definition. It applies here. I was inquiring about what other module I should be using instead, having grep'ped my way through /usr/lib64/python2.6/*.py for a replacement. Nor a naive user here. Been programming/using python since 2000 (java, C++, C, APL, Fortan and Basic before that). Python's my favorite place to do math (since I don't have an APL environment anymore, where a cross or dot product is just a single operator away). I decided to ask a question about an issue that's been on my mind for years. Not really sorry if that bother's your incorrect belief of who can ask questions. There are subjects for each posting. Perhaps you should just ignore ones that aren't interesting to you? Or get a life and a girl/boy friend, so you'll have less time to make snipping remarks (check out: 'http://www.thefreedictionary.com/snipe' if you don't understand snipe). have a better day. GrayShark. On Fri, 25 Jun 2010 16:10:23 -0400, Terry Reedy wrote: > On 6/25/2010 10:02 AM, GrayShark wrote: > >> Thanks for the suggestion. I gave it a quick try. Same 'warning'. No, >> using the string module is the issue. Perhaps I'll just ignore it. > > And what about the next naive user of pylint? Submitting a bug report to > the author of pylint would take much less time than you have *us* to > spend helping you. Doing so would be a way of thanking us since then, if > pylint were changed, we would not have to answer the same question again > in a year.
From: Steven D'Aprano on 25 Jun 2010 18:14 On Fri, 25 Jun 2010 16:31:17 -0500, GrayShark wrote: > Why the rudness Terry Jan Reedy? Get up on the wrong side of the bed? Or > worse luck, no one on the other side to create a wrong side? I see only one person being rude here, and that's you. Terry made the very reasonable observation that you would serve the community, and thank us, by posting a bug report to pylint, rather than just ignoring it, and you respond with a totally bogus accusation of "rudeness" followed by comments about what you imagine Terry's personal life is like. As for your guess as to why pylint haven't fixed the ticket "similar to" this issue: > As to your comment about Logilab's pylint. I'v seen a ticket similar to > this from three months back. I assume they're not fixing it because if > you review 'string' via pydoc you'd read this: [...] Or possibly the ticket has just been missed, and all it needs is a comment made saying "This has bitten me too" and somebody will attend to it. Or not -- who knows? But making *assumptions* that a pylint bug won't be fixed because of the docstring in the string module is foolish. Unless the bug is marked as "Won't fix", the safe assumption is that it hasn't been worked on YET. -- Steven
From: Mark Lawrence on 25 Jun 2010 18:25
First up please don't top post. Second (although I'm sure Terry Reedy can speak for himself) said TJR has put more into Python than I've drunk pints of beer, and that's saying something, so you accusing him of being rude to me stinks!!! Please apologise or get off of this ng/ml. Disgusted. Mark Lawrence. On 25/06/2010 22:31, GrayShark wrote: > Why the rudness Terry Jan Reedy? Get up on the wrong side of the bed? Or > worse luck, no one on the other side to create a wrong side? > > As to your comment about Logilab's pylint. I'v seen a ticket similar to > this from three months back. I assume they're not fixing it because if > you review 'string' via pydoc you'd read this: > > --------------------------------------- > Help on module string: > > NAME > string - A collection of string operations (most are no longer used). > > FILE > /usr/lib64/python2.6/string.py > > DESCRIPTION > Warning: most of the code you see here isn't normally used nowadays. > Beginning with Python 1.6, many of these functions are implemented as > methods on the standard string object. They used to be implemented by > a built-in module called strop, but strop is now obsolete itself. > > --------------------------------------- > > Not the 1.6. Seems some serious work went into putting the 'string's > functionality into _builtin_. > > I've seen many 'deprecated' warnings when programming in PyGTK, as > modules get replaced or functionality changes. I've always assumed it > means that the module will be removed at some future date. An advisory to > programmers and users. > > ---------------------------------------------- > You might note what 'deprecated' means. http://www.thefreedictionary.com/ > deprecated > tr.v. de·pre·cat·ed, de·pre·cat·ing, de·pre·cates > 1. To express disapproval of; deplore. > 2. To belittle; depreciate. > 3. Computer Science To mark (a component of a software standard) as > obsolete to warn against its use in the future so that it may be phased > out. > ----------------------------------------------- > > Not the third definition. It applies here. I was inquiring about what > other module I should be using instead, having grep'ped my way through > /usr/lib64/python2.6/*.py > > for a replacement. > > Nor a naive user here. Been programming/using python since 2000 (java, > C++, C, APL, Fortan and Basic before that). Python's my favorite place to > do math (since I don't have an APL environment anymore, where a cross or > dot product is just a single operator away). I decided to ask a question > about an issue that's been on my mind for years. Not really sorry if that > bother's your incorrect belief of who can ask questions. > > There are subjects for each posting. Perhaps you should just ignore ones > that aren't interesting to you? Or get a life and a girl/boy friend, so > you'll have less time to make snipping remarks (check out: > 'http://www.thefreedictionary.com/snipe' if you don't understand snipe). > > have a better day. > GrayShark. > > > > On Fri, 25 Jun 2010 16:10:23 -0400, Terry Reedy wrote: > >> On 6/25/2010 10:02 AM, GrayShark wrote: >> >>> Thanks for the suggestion. I gave it a quick try. Same 'warning'. No, >>> using the string module is the issue. Perhaps I'll just ignore it. >> >> And what about the next naive user of pylint? Submitting a bug report to >> the author of pylint would take much less time than you have *us* to >> spend helping you. Doing so would be a way of thanking us since then, if >> pylint were changed, we would not have to answer the same question again >> in a year. > |