Re: Pylint bug in python35 b2

2015-07-02 Thread Mark Lawrence
each Python release; this module helps to find out programmatically what the current grammar looks like." -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Re: understanding why there is no setup.py uninstall

2015-07-06 Thread Mark Lawrence
with packages of my system-package-manager (e.g. with apt-get on a debianized system). pip (un)install xyz suits me fine on Windows, but then I'm a one stop shop. -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence --

Re: lxml.xpath 'for/xpath' to get to a node and then xpath again within the loop?

2015-07-06 Thread Mark Lawrence
snipped it this time around? May I most humbly suggest that the next time you ask, please ensure that you tell us what you've googled for prior to putting your question. -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mar

Re: Fast capture and 2D image stacking as 3D numpy array with Python and Raspberry Pi

2015-07-06 Thread Mark Lawrence
ithout saving each 2D capture as a file Best regards, Agustín http://docs.scipy.org/doc/numpy/reference/generated/numpy.dstack.html is the first hit on google for "numpy 3d array stack". -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do fo

Re: Fast capture and 2D image stacking as 3D numpy array with Python and Raspberry Pi

2015-07-06 Thread Mark Lawrence
On 07/07/2015 00:16, Agustin Cruz wrote: On Monday, July 6, 2015 at 6:00:42 PM UTC-4, Mark Lawrence wrote: On 06/07/2015 22:31, Agustin Cruz wrote: I'm working on a Python - Raspberry Pi project in which I need to take about 30 images per second (no movie) and stack each 2D image to

Re: Trying to import numpy

2015-07-07 Thread Mark Lawrence
llow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Re: Idle Not Working.

2015-07-08 Thread Mark Lawrence
smart, but apart from myself and Steven D'Aprano I'm not aware of anyone who can read minds. Thank you. -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Re: Idle Not Working.

2015-07-08 Thread Mark Lawrence
On 08/07/2015 22:15, Chris Angelico wrote: On Thu, Jul 9, 2015 at 7:12 AM, Mark Lawrence wrote: Would you please be kind enough to quote context when replying. Pythonistas might be smart, but apart from myself and Steven D'Aprano I'm not aware of anyone who can read minds. Thank

Re: module dependencies issues

2015-07-09 Thread Mark Lawrence
The former just compile their code by lunchtime and then head to the pub, while the latter have to stay in the office all afternoon testing. -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/m

Re: Trouble getting to windows My Documents directory

2015-07-10 Thread Mark Lawrence
On 10/07/2015 15:27, Mark Storkamp via Python-list wrote: I'm just learning Python, and I've run into trouble trying to change directory to the windows My Documents directory. There's likely a better way to do this, but this is what I&

Re: Evaluation order

2015-07-10 Thread Mark Lawrence
On 10/07/2015 15:30, Thierry Chappuis wrote: [snipped] Please don't top post here as it can get irritating, especially in long threads, thanks. -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence -- https://mail.pytho

Re: Python 3.5.0b3(64 bit) - idle refused to work on windows 7 desktop pc.

2015-07-11 Thread Mark Lawrence
all Luton Bedfordshire UK Please state exactly what you did to try and run the program, e.g. click on a desktop shortcut or something on the start menu, or what you typed at the command line prompt. -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our langu

Re: beginners choice: wx or tk?

2015-07-11 Thread Mark Lawrence
t our language can do for you, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Re: 0 + not 0

2015-07-11 Thread Mark Lawrence
bda_expr , but an »expression« is not an »m_expr«. I must concur. The grammar as written does not actually produce 1 + not 0. I think it's still worthwhile opening a bug, because the behavior is surprising and possibly not intentional. http://bugs.python.org/issue24612 -- My fellow Pyth

Re: Why doesn't input code return 'plants' as in 'Getting Started with Beautiful Soup' text (on page 30) ?

2015-07-11 Thread Mark Lawrence
string or a file handle so as it's good practise to use the "with open" construct this should do it:- soup = BeautifulSoup(ecological_pyramid,"lxml") but do you actually need the "lxml", with the simple parsing I've done in the past I've never used it? -

Re: Why doesn't input code return 'plants' as in 'Getting Started with Beautiful Soup' text (on page 30) ?

2015-07-12 Thread Mark Lawrence
slow down. It strikes me that you're trying to run a marathon a day for a year before you can even walk. For example is the file path in your call to open() correct? Frankly I very much doubt it, although it is possible. Perhaps you'd be more comfortable on the tutor mailin

Re: Why doesn't input code return 'plants' as in 'Getting Started with Beautiful Soup' text (on page 30) ?

2015-07-12 Thread Mark Lawrence
guage can do for you, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Re: Why doesn't input code return 'plants' as in 'Getting Started with Beautiful Soup' text (on page 30) ?

2015-07-12 Thread Mark Lawrence
On 12/07/2015 21:29, Laura Creighton wrote: In a message of Sun, 12 Jul 2015 21:09:22 +0100, Mark Lawrence writes: On 12/07/2015 20:47, Laura Creighton wrote: Simon Evans -- what editor are you using to write your Python code with? Laura Creighton Editor? His earlier posts clearly show

Re: Possibly Pythonic Tail Call Optimization (TCO/TRE)

2015-07-14 Thread Mark Lawrence
attered throughout the cpython code, and to my knowledge there's no paper that says *NEVER* use it. -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Re: beginners choice: wx or tk?

2015-07-14 Thread Mark Lawrence
iving lately. Like wx, or Gtk, you would have to ship some extra dlls with your project for Windows and OS X. Looks good for PySide http://lists.qt-project.org/pipermail/pyside/2015-July/002313.html :) -- My fellow Pythonistas, ask not what our language can do for you, ask what you can

Re: beginners choice: wx or tk?

2015-07-14 Thread Mark Lawrence
, so am I missing something, or am I simply plain wrong, or what? -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Re: Possibly Pythonic Tail Call Optimization (TCO/TRE)

2015-07-14 Thread Mark Lawrence
github.com/lihaoyi/macropy#tail-call-optimization for anybody who is interested. -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Re: Possibly Pythonic Tail Call Optimization (TCO/TRE)

2015-07-14 Thread Mark Lawrence
On 15/07/2015 00:40, Mark Lawrence wrote: On 13/07/2015 23:46, Terry Reedy wrote: Optimizing specific tail calls is tricker. For one thing, calls to a recursion-replacement function, such as recur, add a stack frame that must also be popped. A CPython bytecode manimpuation solution was given

Re: data visualization - graph

2015-07-15 Thread Mark Lawrence
ck the following out. http://ipython.org/notebook.html http://matplotlib.org/ -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Re: Possibly Pythonic Tail Call Optimization (TCO/TRE)

2015-07-15 Thread Mark Lawrence
ou, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Re: Where is "pyvenv.py" in new Python3.4 environment on CentOS7?

2015-07-15 Thread Mark Lawrence
d, been there, seen it, done it, failed miserably, started again. Funnily enough the second time around was far more succesful. -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Re: Possibly Pythonic Tail Call Optimization (TCO/TRE)

2015-07-15 Thread Mark Lawrence
On 15/07/2015 23:34, Gregory Ewing wrote: Mark Lawrence wrote: IIRC the realms of the C setjmp and longjmp. Not really the same thing. A longjmp chops the stack back, whereas a tail call avoids putting something on the stack to begin with. Thanks for that :) -- My fellow Pythonistas, ask

Re: Mapping, with sequence as key, wildcard and subsequence matching

2015-07-16 Thread Mark Lawrence
7;m just hoping that we're going in the right direction. -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Re: Mapping, with sequence as key, wildcard and subsequence matching

2015-07-16 Thread Mark Lawrence
On 16/07/2015 08:09, Mark Lawrence wrote: On 16/07/2015 07:37, Ben Finney wrote: Ethan Furman writes: On 07/15/2015 10:53 PM, Ben Finney wrote: Are those the ‘__contains__’, ‘__getitem__’ methods? What actually is the API of a mapping type, that would need to be customised for this

Re: Mapping, with sequence as key, wildcard and subsequence matching

2015-07-16 Thread Mark Lawrence
ollections’ module had such comprehensive coverage of Python built-in type APIs. You might get some inspiration from http://nullege.com/codes/search/collections.MutableMapping -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mar

Re: Need assistance

2015-07-17 Thread Mark Lawrence
7;t care about either, but certainly not the cleanest way to code, at least IMHO. -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Re: Noob in Python. Problem with fairly simple test case

2015-07-17 Thread Mark Lawrence
ottom division when compared to the RUE, who is still managing to get onto gg with his complete nonsense. I'll admit I enjoy tripping over there just to report him. -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence

Re: Need assistance

2015-07-18 Thread Mark Lawrence
u, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Re: A new module for performing tail-call elimination

2015-07-18 Thread Mark Lawrence
most abused part of any programming language, a comment? Using a dedicated keyword would make it clear that tail call behaviour is being relied upon, and avoid looking like a spurious return. +1 -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our l

Re: Should non-security 2.7 bugs be fixed?

2015-07-18 Thread Mark Lawrence
Python tracker Issues" over on python-dev giving 4947 open issues of which 2260 have patches speaks for itself. -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Re: Should non-security 2.7 bugs be fixed?

2015-07-19 Thread Mark Lawrence
first place. I am at that point now with respect to Idle patches. Do the work with the 3.x patch and finish. Let somebody who needs the patch for 2.7 do the work. If nobody steps up to the mark that's not Terry Reedy's problem, you've done way more than your fair share over the y

Re: Should non-security 2.7 bugs be fixed?

2015-07-19 Thread Mark Lawrence
parate core-workflow mailing list exist. Admittedly things had stalled but I understand that they're being picked up again. -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Re: Should non-security 2.7 bugs be fixed?

2015-07-19 Thread Mark Lawrence
-ideas/2015-May/033686.html is "actively hostile"? Sour grapes springs to my mind. -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Re: Should non-security 2.7 bugs be fixed?

2015-07-19 Thread Mark Lawrence
On 19/07/2015 06:53, dieter wrote: Mark Lawrence writes: ... If the vast majority of Python programmers are focused on 2.7, why are volunteers to help fix 2.7 bugs so scarce? I have not done much work related to Python bug fixing. But, I had bad experience with other open source projects

Re: Should non-security 2.7 bugs be fixed?

2015-07-19 Thread Mark Lawrence
On 19/07/2015 17:10, Cecil Westerhof wrote: On Sunday 19 Jul 2015 15:42 CEST, Mark Lawrence wrote: On 19/07/2015 03:13, Terry Reedy wrote: On 7/18/2015 7:50 PM, Devin Jeanpierre wrote: to 2.7, surely bug fixes are also allowed? Of course, allowed. But should they be made, and if so, by

Re: Proposed keyword to transfer control to another function

2015-07-19 Thread Mark Lawrence
-- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Re: Should non-security 2.7 bugs be fixed?

2015-07-19 Thread Mark Lawrence
On 19/07/2015 18:14, Cecil Westerhof wrote: On Sunday 19 Jul 2015 18:38 CEST, Mark Lawrence wrote: On 19/07/2015 17:10, Cecil Westerhof wrote: On Sunday 19 Jul 2015 15:42 CEST, Mark Lawrence wrote: On 19/07/2015 03:13, Terry Reedy wrote: On 7/18/2015 7:50 PM, Devin Jeanpierre wrote: to

Re: Should non-security 2.7 bugs be fixed?

2015-07-19 Thread Mark Lawrence
On 19/07/2015 21:05, Cecil Westerhof wrote: On Sunday 19 Jul 2015 21:01 CEST, Ian Kelly wrote: On Sun, Jul 19, 2015 at 10:10 AM, Cecil Westerhof wrote: On Sunday 19 Jul 2015 15:42 CEST, Mark Lawrence wrote: On 19/07/2015 03:13, Terry Reedy wrote: On 7/18/2015 7:50 PM, Devin Jeanpierre

Re: Should non-security 2.7 bugs be fixed?

2015-07-19 Thread Mark Lawrence
On 19/07/2015 23:10, Cecil Westerhof wrote: On Sunday 19 Jul 2015 22:28 CEST, Mark Lawrence wrote: On 19/07/2015 21:05, Cecil Westerhof wrote: On Sunday 19 Jul 2015 21:01 CEST, Ian Kelly wrote: On Sun, Jul 19, 2015 at 10:10 AM, Cecil Westerhof wrote: On Sunday 19 Jul 2015 15:42 CEST, Mark

Re: Should non-security 2.7 bugs be fixed?

2015-07-19 Thread Mark Lawrence
On 20/07/2015 00:23, Cecil Westerhof wrote: On Monday 20 Jul 2015 00:51 CEST, Mark Lawrence wrote: On 19/07/2015 23:10, Cecil Westerhof wrote: On Sunday 19 Jul 2015 22:28 CEST, Mark Lawrence wrote: On 19/07/2015 21:05, Cecil Westerhof wrote: On Sunday 19 Jul 2015 21:01 CEST, Ian Kelly

Re: Should non-security 2.7 bugs be fixed?

2015-07-19 Thread Mark Lawrence
why are volunteers to help fix 2.7 bugs so scarce? So I most humbly suggest, as I may have hinted at once or twice earlier in this thread, that people either put up or shut up. -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Re: Should non-security 2.7 bugs be fixed?

2015-07-20 Thread Mark Lawrence
On 20/07/2015 03:16, Rustom Mody wrote: On Monday, July 20, 2015 at 7:16:50 AM UTC+5:30, Mark Lawrence wrote: On 20/07/2015 02:20, Devin Jeanpierre wrote: I don't like how this is being redirected to "surely you misunderstood" or "I don't believe you". Th

Re: Does the Class UserGroup (issue 11588) exist for python 2.7 ?

2015-07-20 Thread Mark Lawrence
you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Re: Procedure for downloading and Installing Python 2.7 Modules

2015-07-20 Thread Mark Lawrence
line for your OS. It might even be that:- pip install scipy grabs everything that you've asked for above, why not try it and see? -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/lis

Re: Fast 12 bit to 16 bit sample conversion?

2015-07-20 Thread Mark Lawrence
27;m probably way out on that? There's only one way to find out. I'm also thinking that you could user one of the itertools functions or recipes to grab the data and hence simplify the loop even more, but it's now 3:45 BST, so I can't think straight, hence bed. Can I

Re: Devanagari int literals [was Re: Should non-security 2.7 bugs be fixed?]

2015-07-21 Thread Mark Lawrence
do for you, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Re: Where is the c source code of the import mechanism that ignores invalid directory?

2015-07-21 Thread Mark Lawrence
me to pinpoint the exact c source location? Thanks. -- 吾輩は猫である。ホームーページはhttps://introo.me <http://introo.me>。 Start here https://hg.python.org/cpython/file/6629773fef63/Python/import.c -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Re: Can I copy/paste Python code?

2015-07-21 Thread Mark Lawrence
can do for you, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Re: Can I copy/paste Python code?

2015-07-21 Thread Mark Lawrence
On 21/07/2015 21:32, Grant Edwards wrote: On 2015-07-21, Mark Lawrence wrote: On 21/07/2015 18:25, Laura Creighton wrote: Lots of the problems are with the free reader, adobe acrobat. It is designed so that the user is kept very much in a straight-jacket which is a problem when your Mum

Re: Should non-security 2.7 bugs be fixed?

2015-07-21 Thread Mark Lawrence
low project has succeeded, and I'll repeat that it has to, then Python will definitely achieve what Pinky and the Brain failed to do :) -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Re: Can I copy/paste Python code?

2015-07-22 Thread Mark Lawrence
on't. -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Re: Encoding of Python 2 string literals

2015-07-22 Thread Mark Lawrence
nter/IDLE, I'm perfectly happy to call a truce regarding our litle spiff over the last couple of days. Virtual handshake over the Atlantic Ocean? -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence -- https://mail.pyth

Re: convert output to list(and nested dictionary)

2015-07-22 Thread Mark Lawrence
an do for you, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Re: OT Re: Math-embarrassment results in CS [was: Should non-security 2.7 bugs be fixed?]

2015-07-22 Thread Mark Lawrence
t interested in actually doing anything, but just in case you could try reading. https://www.python.org/dev/peps/pep-0462/ https://www.python.org/dev/peps/pep-0474/ -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence -- https://

Re: Encoding of Python 2 string literals

2015-07-22 Thread Mark Lawrence
On 22/07/2015 21:52, Terry Reedy wrote: On 7/22/2015 4:30 PM, Mark Lawrence wrote: http://www.scons.org/ In particular, he is, according to him, trying to make it possible to port it to 3.x. This is something we both want to encourage. I didn't say he was banned from the Python list

Re: unexpected output while using list(and nested dictionary)

2015-07-23 Thread Mark Lawrence
r you, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Re: OT Re: Math-embarrassment results in CS [was: Should non-security 2.7 bugs be fixed?]

2015-07-23 Thread Mark Lawrence
ppens. -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Re: OT Re: Math-embarrassment results in CS [was: Should non-security 2.7 bugs be fixed?]

2015-07-23 Thread Mark Lawrence
On 23/07/2015 23:01, MRAB wrote: On 2015-07-23 22:50, Mark Lawrence wrote: On 23/07/2015 22:29, Marko Rauhamaa wrote: Chris Angelico : Fortunately, we don't need to completely understand it. New Horizons reached Pluto right on time after a decade of flight that involved taking a left tu

Re: what windows compiler for python 3.5?

2015-07-24 Thread Mark Lawrence
e download and install takes quite a time. I'm aware that Steve Dower is trying to get a much smaller install made available for those who just want to build from the command line. -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Re: OT Re: Math-embarrassment results in CS [was: Should non-security 2.7 bugs be fixed?]

2015-07-24 Thread Mark Lawrence
y'd rather knot. https://www.ocf.berkeley.edu/~mbarrien/jokes/lightblb.txt -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Re: About this mailing list

2015-07-24 Thread Mark Lawrence
not what our language can do for you, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Re: 42**1000000 is CPU time free

2015-07-24 Thread Mark Lawrence
r you, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Re: Which GUI?

2015-07-24 Thread Mark Lawrence
-- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Re: what windows compiler for python 3.5?

2015-07-24 Thread Mark Lawrence
comes under, explodedware possibly? -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Re: Python 3.4 Idle?

2015-07-25 Thread Mark Lawrence
ythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Re: Gmail eats Python

2015-07-26 Thread Mark Lawrence
heavy: "if only, if only". Simpler things do less. Do you not use ½ dozen (at least) languages? No, I use precisely one as it fits my purposes. -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence -- https://mai

Re: Gmail eats Python

2015-07-26 Thread Mark Lawrence
On 26/07/2015 10:21, alister wrote: emacs is a great operating system - the only thing it lacks is a good text editor ;-) notepad -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman

Re: Python Questions - July 25, 2015

2015-07-26 Thread Mark Lawrence
Packages", I've been using stuff from there for years and never once had a problem. -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Re: Gmail eats Python

2015-07-26 Thread Mark Lawrence
es to install and up to 8G of disk space. Ideal for most people I'd have thought :) -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Re: Python Questions - July 25, 2015

2015-07-26 Thread Mark Lawrence
seven word question and a one word answer? -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Re: Python Questions - July 25, 2015

2015-07-28 Thread Mark Lawrence
as it prevents you spending time and effort updating an unintended installation. -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Re: Python Questions - July 25, 2015

2015-07-28 Thread Mark Lawrence
enix/snapshot-builds/ wxPython_Phoenix So in theory you should be able to go straight to pythonlibs although I've not tried it myself. -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Re: My code won't work if I double click the saved file

2015-07-29 Thread Mark Lawrence
u, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Re: My code won't work if I double click the saved file

2015-07-30 Thread Mark Lawrence
associating .py files with the python2 executable. I do not use Windows, but I believe you can adjust these associations. With the advent of the Python Launcher for Windows things have changed. Here's my setup. C:\Users\Mark\Documents\MyPython>assoc .py .py=Python.File C:\Users\Mar

Re: Python launcher problem

2015-07-30 Thread Mark Lawrence
y %PATH. A Registry setting gone haywire? I get:- C:\Users\Mark\Documents\MyPython>py -3 -V & python3 -V Python 3.5.0b4 'python3' is not recognized as an internal or external command, operable program or batch file. I've never had a Windows system with a 'python3' on

Re: How to re-write this bash script in Python?

2015-07-30 Thread Mark Lawrence
ou get the data correct. -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Re: How to rearrange array using Python?

2015-07-30 Thread Mark Lawrence
constraint satisfaction problem, in which case this https://pypi.python.org/pypi/python-constraint/1.2 is as good a starting point as any. If I'm wrong we'll soon get told :) -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark

Re: How to rearrange array using Python?

2015-07-30 Thread Mark Lawrence
On 30/07/2015 23:31, [email protected] wrote: Hi Mark, I’m still confused because line 4 reads: fh=open(fname,'r') # Open a new file handle, not fn = open(fname) Can you write down line by line from error to correction? I'd think about it if you could find the correct t

Re: Which Python do I need for the below?

2015-08-01 Thread Mark Lawrence
one listed. -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Re: Send data to asyncio coroutine

2015-08-01 Thread Mark Lawrence
d and tested of course. -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Re: Send data to asyncio coroutine

2015-08-01 Thread Mark Lawrence
On 01/08/2015 19:38, Marko Rauhamaa wrote: Javier : El sábado, 1 de agosto de 2015, 18:45:17 (UTC+2), Mark Lawrence escribió: clearly you know better than the Python core developers Nobody thinks that self is better than core developers, and personaly I don't think I am better than an

Re: Send data to asyncio coroutine

2015-08-01 Thread Mark Lawrence
On 01/08/2015 20:09, Marko Rauhamaa wrote: Mark Lawrence : On 01/08/2015 19:38, Marko Rauhamaa wrote: It is odd how an engineering forum like this one so often judges ideas based on the pedigree of the participants rather than objective technical arguments. What I find odd is that the

Re: Send data to asyncio coroutine

2015-08-01 Thread Mark Lawrence
On 01/08/2015 20:07, Javier wrote: El sábado, 1 de agosto de 2015, 20:46:49 (UTC+2), Mark Lawrence escribió: Well! let's forget all this and let's work with python 3.4 :) Please keep up, 3.5 is in beta and the current default will be 3.6 :) -- My fellow Pythonistas, ask no

Re: Most Pythonic way to store (small) configuration

2015-08-02 Thread Mark Lawrence
conventional commenting format. +1 -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Python 3 May Become Relevant Now

2015-08-02 Thread Mark Lawrence
rr should have a field day with this one http://nafiulis.me/python-3-may-become-relevant-now.html -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Re: GvR Europython keynote described on lwn.net

2015-08-02 Thread Mark Lawrence
age can do for you, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Re: Most pythonic way of rotating a circular list to a canonical point

2015-08-03 Thread Mark Lawrence
likely never find them by just guessing.. +1 -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Re: Optimal solution for coloring logging output

2015-08-03 Thread Mark Lawrence
Pythonista2 and Pythonista3 so that people can show their preferred version? -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Re: Most Pythonic way to store (small) configuration

2015-08-03 Thread Mark Lawrence
t what our language can do for you, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Re: Parsing multipart HTTP response

2015-08-03 Thread Mark Lawrence
r language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Re: Uninstall

2015-08-04 Thread Mark Lawrence
x27;t". The simple solution is not to subscribe. -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Re: Uninstall

2015-08-05 Thread Mark Lawrence
On 05/08/2015 02:51, Mario Figueiredo wrote: [chopped to pieces] On Tue, Aug 4, 2015 at 9:01 PM, Mark Lawrence mailto:[email protected]>> wrote: On 04/08/2015 19:31, [email protected] <mailto:[email protected]> wrote: On Tuesday, August 4, 2015 at 7:29

Re: Problem in IDLE setup

2015-08-05 Thread Mark Lawrence
to happen, and what actually happened. If you have a traceback please cut and paste all of it into your response. What OS are you using? -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailma

Re: QUEST: does HACKING make FOR loop quicker.

2015-08-05 Thread Mark Lawrence
On 05/08/2015 21:00, John Doe wrote: Three strikes and you're out, good bye troll. -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Re: QUEST: does HACKING make FOR loop quicker.

2015-08-05 Thread Mark Lawrence
On 06/08/2015 01:29, Michael Torrie wrote: On 08/05/2015 03:39 PM, Mark Lawrence wrote: On 05/08/2015 21:00, John Doe wrote: Three strikes and you're out, good bye troll. While the original post is incomprehensible to me, I see only one post. What were the other two strikes?

<    27   28   29   30   31   32   33   34   35   36   >