RE: Re: I want to get involved with Python!

2015-03-11 Thread bink...@mweb.co.za
Thanks, everyone, for the advice so far - I am impressed with the way everyone wants to help! From: fr...@chagford.com Sent: 2015/03/12 07:29:46 AM To: python-list@python.org Cc: Subject: RE: Re: I want to get involved with Python! Original Message - From:bink...@mweb.co.zato:python-list@pyt

Re: __new__() does not return anything, on singletong pattern

2015-03-11 Thread Steven D'Aprano
Mario Figueiredo wrote: > I'm fairly new to Python, so I don't know if the following is me > abusing the programming language idioms, or simply a mistake of my IDE > code inspection routine. > > I have a singleton Map class which is defined like so: > > class Map: > _instance = None > de

Re: I want to get involved with Python!

2015-03-11 Thread Frank Millman
Original Message - From:bink...@mweb.co.zato:python-list@python.orgSent: Wednesday, March 11, 2015 11:19 AMSubject: I want to get involved with Python! > Please advise on what route you would suggest I take to become a Python > > > developer! > > Thanks, > Bianca. There is a Capetown Pytho

Re: __new__() does not return anything, on singletong pattern

2015-03-11 Thread Ethan Furman
On 03/11/2015 04:33 PM, Mario Figueiredo wrote: > The following code runs just fine. But PyCharm flags the assignment > with a warning telling me that generate() does not return anything and > the I lose code completion on the mmap variable. > > if __name__ == '__main__': > mmap = Map.generat

__new__() does not return anything, on singletong pattern

2015-03-11 Thread Mario Figueiredo
I'm fairly new to Python, so I don't know if the following is me abusing the programming language idioms, or simply a mistake of my IDE code inspection routine. I have a singleton Map class which is defined like so: class Map: _instance = None def __new__(cls): if Map._instan

Re: MSVC2013

2015-03-11 Thread Mark Lawrence
On 11/03/2015 21:59, polyver...@gmail.com wrote: On Sunday, March 8, 2015 at 7:51:17 PM UTC+1, Mark Lawrence wrote: On 08/03/2015 17:57, polyver...@gmail.com wrote: On Saturday, March 7, 2015 at 5:36:07 PM UTC+1, Mark Lawrence wrote: On 07/03/2015 15:55, polyver...@gmail.com wrote: Out of cur

Re: MSVC2013

2015-03-11 Thread polyvertex
On Sunday, March 8, 2015 at 7:51:17 PM UTC+1, Mark Lawrence wrote: > On 08/03/2015 17:57, polyver...@gmail.com wrote: > > On Saturday, March 7, 2015 at 5:36:07 PM UTC+1, Mark Lawrence wrote: > >> On 07/03/2015 15:55, polyver...@gmail.com wrote: > >>> Out of curiosity, is there any plan to use a mor

Re: Use à Python 2 module with Python 3

2015-03-11 Thread Robert Kern
On 2015-03-11 18:46, Vincent Vande Vyvre wrote: Le 11/03/2015 18:06, Ian Kelly a écrit : On Wed, Mar 11, 2015 at 4:54 AM, Steven D'Aprano wrote: Michael Parchet wrote: Hello, The pyside project is ded. What makes you think that Pyside is dead? It seems to be active to me. The latest update

Re: Use à Python 2 module with Python 3

2015-03-11 Thread Robert Kern
On 2015-03-11 19:31, Michael Torrie wrote: On 03/11/2015 01:29 PM, Chris Warrick wrote: On Wed, Mar 11, 2015 at 8:20 PM, Michael Torrie wrote: My biggest complaint with PySide is that for historical reasons (looking at you, PyQt), it does not use pep8 naming conventions, which makes for some r

Re: Use à Python 2 module with Python 3

2015-03-11 Thread Michael Torrie
On 03/11/2015 01:29 PM, Chris Warrick wrote: > On Wed, Mar 11, 2015 at 8:20 PM, Michael Torrie wrote: >> My biggest complaint with PySide is that for historical reasons (looking >> at you, PyQt), it does not use pep8 naming conventions, which makes for >> some really ugly function and method names

Re: Use à Python 2 module with Python 3

2015-03-11 Thread Chris Warrick
On Wed, Mar 11, 2015 at 8:20 PM, Michael Torrie wrote: > My biggest complaint with PySide is that for historical reasons (looking > at you, PyQt), it does not use pep8 naming conventions, which makes for > some really ugly function and method names. This isn’t PyQt’s fault. Both are more-or-less

Re: Use à Python 2 module with Python 3

2015-03-11 Thread Vincent Vande Vyvre
Le 11/03/2015 18:06, Ian Kelly a écrit : On Wed, Mar 11, 2015 at 4:54 AM, Steven D'Aprano wrote: Michael Parchet wrote: Hello, The pyside project is ded. What makes you think that Pyside is dead? It seems to be active to me. The latest update was just 29 days ago: https://github.com/PySide

Re: I want to get involved with Python!

2015-03-11 Thread Terry Reedy
On 3/11/2015 5:19 AM, bink...@mweb.co.za wrote: I am currently a "Progress Programmer" and looking for new challenges! Are you referring to https://en.wikipedia.org/wiki/OpenEdge_Advanced_Business_Language It seems that Python is a good language to get familiar with and I would like some ad

Re: when may sys.executable be empty

2015-03-11 Thread Dave Angel
On 03/11/2015 10:41 AM, Wolfgang Maier wrote: From the documentation of sys.executable: A string giving the absolute path of the executable binary for the Python interpreter, on systems where this makes sense. If Python is unable to retrieve the real path to its executable, sys.executable

Re: Use à Python 2 module with Python 3

2015-03-11 Thread Michael Parchet
Hello, Only one file of pyside project has update at 10 fob, What's your opinion Pyside is ded ? Best regards mparchet Le 11.03.15 18:06, Ian Kelly a écrit : On Wed, Mar 11, 2015 at 4:54 AM, Steven D'Aprano wrote: Michael Parchet wrote: Hello, The pyside project is ded. What makes

Re: Use à Python 2 module with Python 3

2015-03-11 Thread Ian Kelly
On Wed, Mar 11, 2015 at 4:54 AM, Steven D'Aprano wrote: > Michael Parchet wrote: > >> Hello, >> >> The pyside project is ded. > > What makes you think that Pyside is dead? It seems to be active to me. The > latest update was just 29 days ago: > > https://github.com/PySide 4 days ago, even. Seems

Re: when may sys.executable be empty

2015-03-11 Thread YBM
Le 11/03/2015 15:41, Wolfgang Maier a écrit : From the documentation of sys.executable: A string giving the absolute path of the executable binary for the Python interpreter, on systems where this makes sense. If Python is unable to retrieve the real path to its executable, sys.executable

Re: Re: I want to get involved with Python!

2015-03-11 Thread Jacob Kruger
- Original Message - From: bink...@mweb.co.za To: ja...@blindza.co.za Cc: python-list@python.org Sent: Wednesday, March 11, 2015 4:10 PM Subject: RE: Re: I want to get involved with Python! > Jacob, thanks for replying. The IT job market is s specific in what they

RE: Re: I want to get involved with Python!

2015-03-11 Thread bink...@mweb.co.za
Jacob, thanks for replying. The IT job market is s specific in what they are looking for here in SA and it is really hard to get a job in a programming language one hasn't been exposed to. Even when you explain to the agency that you want to learn new technologies and that the only way you c

when may sys.executable be empty

2015-03-11 Thread Wolfgang Maier
From the documentation of sys.executable: A string giving the absolute path of the executable binary for the Python interpreter, on systems where this makes sense. If Python is unable to retrieve the real path to its executable, sys.executable will be an empty string or None. So on which

Re: I want to get involved with Python!

2015-03-11 Thread Jacob Kruger
- Original Message - From: bink...@mweb.co.za To: python-list@python.org Sent: Wednesday, March 11, 2015 11:19 AM Subject: I want to get involved with Python! > Please advise on what route you would suggest I take to become a Python > > developer! > > Thanks, > Bian

Re: Use à Python 2 module with Python 3

2015-03-11 Thread Michael Torrie
On 03/11/2015 04:54 AM, Steven D'Aprano wrote: >> Dose pyqt4 support Python 3 ? > > I can only repeat what I already wrote a few days ago: > > For PyQt specifically, googling suggests that PyQt does work with Python > 3, but the documentation is out of date and you may have difficulty > installin

Re: Use à Python 2 module with Python 3

2015-03-11 Thread Michael Torrie
On 03/11/2015 03:28 AM, Michael Parchet wrote: > The pyside project is ded. Why do you say PySide is dead? > Dose pyqt4 support Python 3 ? > Thanks for your answer > Best regards > mparchet Riverbank Computing has a web page that I'm sure has information on their PyQt product. (Yes PyQt is a co

Urgent Need for Sr QE Automation Consultant - Sunnyvale CA (Local candidates ONLY)

2015-03-11 Thread tiya . akrid
Hello, We have below position for one of the leading online retailer of sports merchandise. Let me know if you have LOCAL candidates. Please send resume with all the details asked below. Job title: Software Engineer in Quality Location: Sunnyvale, CA Rate: Open for the right candidate Type: 6

[ANN] Pylint 1.4.2 / Astroid 1.3.5 released

2015-03-11 Thread Claudiu Popa
Hello, I'm happy to announce the release of Pylint 1.4.2 and astroid 1.3.5. The following changes were included in these releases: For pylint: * Don't require a docstring for empty modules. Closes issue #261. * Fix a false positive with `too-few-format-args` string warning, emit

Re: Use à Python 2 module with Python 3

2015-03-11 Thread Steven D'Aprano
Michael Parchet wrote: > Hello, > > The pyside project is ded. What makes you think that Pyside is dead? It seems to be active to me. The latest update was just 29 days ago: https://github.com/PySide PySide supports Python 3: http://qt-project.org/wiki/PySide_Python_3_Support > Dose pyqt4 s

Re: Use à Python 2 module with Python 3

2015-03-11 Thread Michael Parchet
Hello, The pyside project is ded. Dose pyqt4 support Python 3 ? Thanks for your answer Best regards mparchet > Le 10 mars 2015 à 01:20, Michael Torrie a écrit : > >> On 03/09/2015 05:47 PM, Steven D'Aprano wrote: >> Michael Parchet wrote: >> >>> Hello, >>> >>> For a new project, a person r