Re: i am having troubles downloading 3.5.1 to my computer

2016-01-14 Thread Mark Lawrence
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: Writing a stream of bytes

2016-01-15 Thread Mark Lawrence
ich case it could be forked, so we could have mud 2.8, along with RickedMud. -- 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: wxpython strange behaviour

2016-01-15 Thread Mark Lawrence
e issues. -- 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: Stop writing Python 4 incompatible code

2016-01-15 Thread Mark Lawrence
eleased, or the RUE explaining precisely what is wrong with the FSR. -- 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: Is there a limit to the characters used in a print statement?

2016-01-16 Thread Mark Lawrence
e minute before this did. -- 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: Single format descriptor for list

2016-01-20 Thread Mark Lawrence
ange(4,8) >>> from myutils import format_iter >>> print(format_iter(a, fmt='{}th', sep='\n')) 4th 5th 6th 7th -- 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: installing

2016-01-20 Thread Mark Lawrence
search the archives and you'll get your 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: Recurring Prompt

2016-01-20 Thread Mark Lawrence
d and answered repeatedly over the last few months so search the archives and you'll get your 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

Warehouse, the new PyPi codebase

2016-01-28 Thread Mark Lawrence
what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Re: show instant data on webpage

2016-01-30 Thread Mark Lawrence
an do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Re: deb's for wheezy?

2016-01-31 Thread Mark Lawrence
k what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Re: ts.plot() pandas: No plot!

2016-01-31 Thread Mark Lawrence
ny clue on what is happening? I'm using kubuntu and python3. Thanks. Paulo Is it as simple as adding a call to ts.show() ? -- 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: Error

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

Mutant Registration: Implicit or Explicit

2016-02-03 Thread Mark Lawrence
Rather more interesting than RR or the RUE? http://inre.dundeemt.com/2016-02-03/mutant-registration-implicit-or-explicit/ -- 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

Re: Reply to whom?

2016-02-05 Thread Mark Lawrence
e, it's a piece of cake. -- 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

2016-02-06 Thread Mark Lawrence
repeatedly over the last few months so please search the archives for the solution. You might also like to consider giving a rather more specific subject for your next question. -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence

Re: trouble installing python

2016-02-07 Thread Mark Lawrence
been asked and ansered repeatedly in the last few weeks so please search the archives for the 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: setup failed

2016-02-08 Thread Mark Summerfield
If you need 32-bit Python on Windows my advice is to install 3.4. If you need 32-bit and 64-bit Python on Windows, then I think it will only work with 3.4 (or older), but not with 3.5's new installer. I have tried installing 3.5.0 and 3.5.1 on several machines both 32- and 64-bit Windows. The 3

Re: setup failed

2016-02-08 Thread Mark Summerfield
On Monday, February 8, 2016 at 10:50:19 AM UTC, Mark Summerfield wrote: > If you need 32-bit Python on Windows my advice is to install 3.4. If you need > 32-bit and 64-bit Python on Windows, then I think it will only work with 3.4 > (or older), but not with 3.5's new installer. >

Re: from scipy.linalg import _fblas ImportError: DLL load failed: The specified module could not be found.

2016-02-09 Thread Mark Lawrence
-3 Thanks, Mike No 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: Heap Implementation

2016-02-09 Thread Mark Lawrence
problem again with https://docs.python.org/3/library/queue.html#queue.PriorityQueue or even https://docs.python.org/3/library/asyncio-queue.html#asyncio.PriorityQueue ? -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence -- https:

Re: [newbie] how to create log files

2016-02-09 Thread Mark Lawrence
ow this is accomplished the best way? thanks and kind regards, Jens https://docs.python.org/3/library/logging.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: How to trap this error (comes from sqlite3)

2016-02-09 Thread Mark Lawrence
ather a long time. How can I trap the error and just put a Null or zero in the datagrid? Where do I put the try:/except: ? The rule is always keep the try/except to the bare minimum hence. try: self.SetCellValue(row_num, col, xx) except sqlite3.OperationalError: doSomething() -- 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: Heap Implementation

2016-02-09 Thread Mark Lawrence
On 09/02/2016 11:44, Cem Karan wrote: On Feb 9, 2016, at 4:40 AM, Mark Lawrence wrote: On 09/02/2016 04:25, Cem Karan wrote: No problem, that's what I thought happened. And you're right, I'm looking for a priority queue (not the only reason to use a heap, but a pretty im

Re: Cygwin and Python3

2016-02-10 Thread Mark Lawrence
27;m perfectly happy with the free versions of Visual Studio. -- 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's import situation has driven me to the brink of imsanity

2016-02-10 Thread Mark Lawrence
stand corrected. As a slight aside, please don't top post, it's irritating, 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.python.org/mailman/listinfo/python-list

Re: Cygwin and Python3

2016-02-11 Thread Mark Lawrence
On 11/02/2016 07:46, [email protected] wrote: On 10/02/2016 23:05, Mike S wrote: On 2/10/2016 5:05 AM, Mark Lawrence wrote: [snip] Have you seen this? http://www.davidbaumgold.com/tutorials/set-up-python-windows/ I have now, but I'm perfectly happy with the free versions of V

Re: Storing a big amount of path names

2016-02-12 Thread Mark Lawrence
obvious by using a red hot poker to engrave it onto every newbies' forehead. Even then some simply wouldn't take a blind bit of notice. -- 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.o

Re: (unknown)

2016-02-12 Thread Mark Lawrence
answered repeatedly over the last few months. -- 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: problem with dateutil

2016-02-13 Thread Mark Lawrence
it you may, for example, intenationalize the parser strings, or make it ignore additional words. HTH. -- 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: I m facing some problem while opening the interpreter. how can I resolve the issue?

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

Re: Reg: Data frame conversion

2016-02-17 Thread Mark Lawrence
our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Python 3 in 2016

2016-02-17 Thread Mark Lawrence
rr eat your heart out. https://hynek.me/articles/python3-2016/ -- 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

How the heck does async/await work in Python 3.5

2016-02-17 Thread Mark Lawrence
Seeing there is a lot of interest in asyncio recently I figured people might be interested in this http://www.snarky.ca/how-the-heck-does-async-await-work-in-python-3-5 -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence

Re: Will file be closed automatically in a "for ... in open..." statement?

2016-02-17 Thread Mark Lawrence
.txt') for line in handle : ...do something... handle.close() Is that better? -- 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 keyword args can be any string

2016-02-17 Thread Mark Lawrence
{'': 23, '123': 17, '---': 999, 'abc-def': 42} Bug or feature? I'm not sure, but what on earth got you to this in the first place? -- 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: testfixtures 4.8.0 Released!

2016-02-18 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: Considering migrating to Python from Visual Basic 6 for engineering applications

2016-02-18 Thread Mark Lawrence
hon Extension Packages" but it's as safe as houses, I've been using it for years without any problems at all. -- 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: Considering migrating to Python from Visual Basic 6 for engineering applications

2016-02-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: [newbie] Problem with matplotlib

2016-02-20 Thread Mark Lawrence
Users\Mark\Desktop>py -2.7 Python 2.7.10 (default, May 23 2015, 09:44:00) [MSC v.1500 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> import matplotlib.pyplot as plt >>> Please have an

Re: I can't install python on my pc

2016-02-20 Thread Mark Lawrence
archives for the answer to your specific situation, whatever that may be. -- 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: PyPDF2 merge / out of memory

2016-02-21 Thread Mark Lawrence
s, 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: PyQt5 not found from Python

2016-02-21 Thread Mark Lawrence
ing that you get a version of PyQt that matches with a Python version, I'd assume that you'd drop it into the appropriate lib\site-packages, but I'll happily stand corrected on that one. -- My fellow Pythonistas, ask not what our language can do for you, ask what you can

Re: PyQt5 not found from Python

2016-02-21 Thread Mark Lawrence
On 21/02/2016 16:40, Arie van Wingerden wrote: Thx. Didn't realize that! Please provide some context when you reply, 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.python.org/mailman/lis

Re: Make a unique filesystem path, without creating the file

2016-02-23 Thread Mark Lawrence
The PEP status is draft so is subject to change. -- 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: Make a unique filesystem path, without creating the file

2016-02-23 Thread Mark Lawrence
On 23/02/2016 08:22, Paul Rubin wrote: Mark Lawrence writes: https://mail.python.org/pipermail/python-ideas/2015-September/036333.html then http://www.gossamer-threads.com/lists/python/dev/1223780 Thanks. It would be nice if those were gatewayed to usenet like this group is. I can't

Re: Could not find suitable distribution for Requirement.parse('urllib2')

2016-02-24 Thread Mark Lawrence
has gone. If I'm correct you should to be able to run the code through 2to3. -- 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: HELP

2016-02-24 Thread Mark Lawrence
rong place? -- 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: HELP

2016-02-24 Thread Mark Lawrence
On 24/02/2016 15:43, Igor Korot wrote: Hi, On Wed, Feb 24, 2016 at 10:04 AM, Mark Lawrence wrote: On 24/02/2016 14:08, Reeves, Andrew wrote: I don't know what's going on. I am running windows 10 64 bit and per the pictures I am providing. I am also running Replicator G 0040. Ju

Re: Nested List question

2016-02-24 Thread Mark Lawrence
the other elements. thanks George As you've all ready had answers, I'd simply ask is a list the best data structure for your application? -- 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: Computational Chemistry Analysis

2016-02-25 Thread Mark Lawrence
you may be able to provide! Thank you, Mandy Feagans I'll guess that you start here http://biopython.org/wiki/Main_Page -- 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/p

Re: Cycling through iterables diagonally

2016-02-26 Thread Mark Lawrence
like the earlier Jussi Piitulainen answer that made my head spin :) -- 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: subprocess startup error

2016-02-26 Thread Mark Lawrence
gly couldn't find it for 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: [Off-topic] Requests author discusses MentalHealthError exception

2016-02-27 Thread Mark Lawrence
nd it fascinating to read. Thanks for the link even if it did touch an extremely raw nerve. -- 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: Everything good about Python except GUI IDE?

2016-02-27 Thread Mark Lawrence
k 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: Everything good about Python except GUI IDE?

2016-02-28 Thread Mark Lawrence
ou want to enforce a newline style that way. 2. A good editor can read and write any newline style. It should also not convert without asking the user. Those who can, do, those who can't, teach? -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our

Re: Help

2016-02-29 Thread Mark Lawrence
what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Re: General computer language, syntax question.

2016-02-29 Thread Mark Lawrence
on.org/3/library/stdtypes.html#truth-value-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/mailman/listinfo/python-list

Re: [Off-topic] Requests author discusses MentalHealthError exception

2016-02-29 Thread Mark Lawrence
for the most part, the mental health industry is most interested in pushing drugs and forcing people into some status quo. I am disgusted by your comments. I'll keep my original reply in reserve. -- My fellow Pythonistas, ask not what our language can do for you, ask what you can d

Re: Explaining names vs variables in Python

2016-03-02 Thread Mark Lawrence
7;s no mystery here, no circular definition. Are we discussing UK (highly generalised), Geordie, Glaswegian, US, Canadian, South African, Australian, New Zealand, or some other form of English? -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our lang

Re: Explaining names vs variables in Python

2016-03-02 Thread Mark Lawrence
On 02/03/2016 21:52, Chris Angelico wrote: On Thu, Mar 3, 2016 at 8:49 AM, Mark Lawrence wrote: Are we discussing UK (highly generalised), Geordie, Glaswegian, US, Canadian, South African, Australian, New Zealand, or some other form of English? Is there any disagreement among them about the

Re: Explaining names vs variables in Python

2016-03-03 Thread Mark Lawrence
On 03/03/2016 02:05, Steven D'Aprano wrote: On Thu, 3 Mar 2016 08:49 am, Mark Lawrence wrote: On 02/03/2016 17:23, Steven D'Aprano wrote: On Thu, 3 Mar 2016 01:11 am, Marko Rauhamaa wrote: What is missing is the rules that are obeyed by the "is" operator. I think what

Re: merging number of csv files

2016-03-03 Thread Mark Lawrence
try pandas http://pandas.pydata.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: [Off-topic] Requests author discusses MentalHealthError exception

2016-03-03 Thread Mark Lawrence
remely hurtful. -- 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: list reversal error

2016-03-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: Help

2016-03-04 Thread Mark Lawrence
completely meaningless, standing all alone. -- 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: Continuing indentation

2016-03-04 Thread Mark Lawrence
gree with PEP 8's suggestion. You guys are spending way too much time fighting over something that is clearly subjective. Nobody is "correct" here. There's no right and wrong, just simple preference. +1 -- My fellow Pythonistas, ask not what our language can do for you, ask

Re: Continuing indentation

2016-03-04 Thread Mark Lawrence
gment. Look at other examples and decide what looks best. And don't hesitate to ask! -- 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: Any comment on using ctypesgen package?

2016-03-05 Thread Mark Lawrence
to "from .cparset import *". I can understand the former, but can't figure out the latter:-( --Jach HTH http://python3porting.com/problems.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: Adding Icon To Tkinter Window

2016-03-05 Thread Mark Lawrence
-questions.html. Then tell us exactly what you are trying to achieve, how you are trying to achieve it and the error that you get, including the complete traceback if there is one. TIA. -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark

Re: Compact connected regular graphs

2016-03-06 Thread Mark Lawrence
numerical results on search. http://jt.node365.se/nodes15.html Do anyone know? http://jt.node365.se/Compact.rtf Where is the Python question here? -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence -- https

Re: Compact connected regular graphs

2016-03-06 Thread Mark Lawrence
On 06/03/2016 11:04, [email protected] wrote: Den söndag 6 mars 2016 kl. 12:01:02 UTC+1 skrev Mark Lawrence: On 06/03/2016 10:39, [email protected] wrote: How come all graphs using 42 links and more then 84 nodes have compact regular connected solutions? Did turn off

Re: ???

2016-03-06 Thread Mark Lawrence
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.5.1 (32-bit)_20160306131105

2016-03-06 Thread Mark Lawrence
search the archives. As is often the case there is no file with your message. -- 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: Regarding installation of python-3.5.1

2016-03-06 Thread Mark Lawrence
data that we need to help you. What OS? What is the precise error message? -- 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: Phyton

2016-03-06 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: Phyton

2016-03-06 Thread Mark Lawrence
tas, 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: Phyton

2016-03-06 Thread Mark Lawrence
On 06/03/2016 17:20, Ian Kelly wrote: On Sun, Mar 6, 2016 at 10:05 AM, Mark Lawrence wrote: Why in the year 2016 are people still giving links to the Luddite Python 2 docs? Maybe because it's the version that comes up when googling for "python if statement". The obvious

Re: importing

2016-03-07 Thread Mark Lawrence
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: Question

2016-03-07 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: How to get which attribute causes the AttributeError except inspecting strings?

2016-03-07 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: importing

2016-03-07 Thread Mark Lawrence
te-a-python-package/ -- 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: Question

2016-03-07 Thread Mark Lawrence
On 07/03/2016 17:42, Ian Kelly wrote: On Mon, Mar 7, 2016 at 10:25 AM, Mark Lawrence wrote: On 07/03/2016 16:57, Ian Kelly wrote: On Mon, Mar 7, 2016 at 9:39 AM, Ben Morales wrote: I am trying to download Python but I have windows 10 and I do not see a 64 bit download for my operating

Re: Pyhon 2.x or 3.x, which is faster?

2016-03-07 Thread Mark Lawrence
n and implement the core language features of Python as of CPython 2.4.". -- 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: importing

2016-03-07 Thread Mark Lawrence
put a grid onto a notebook tab. Regrettably the notebook grid is conspicious by its absence from the docs :( -- 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: importing

2016-03-07 Thread Mark Lawrence
On 07/03/2016 20:07, MRAB wrote: On 2016-03-07 19:08, Mark Lawrence wrote: On 07/03/2016 17:38, Chris Angelico wrote: On Tue, Mar 8, 2016 at 4:23 AM, Tony van der Hoff wrote: Thanks to all who replied to my cry for help; I understand it better now. But: On 07/03/16 16:08, Chris Angelico

Re: Pythonic love

2016-03-07 Thread Mark Lawrence
rary/csv.html which can also cope with tsv files, it's far more reliable than relying on a simple call to split(). -- 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: breaking out of outer loops

2016-03-07 Thread Mark Lawrence
quot;; } I suggest you read and digest the various responses here http://stackoverflow.com/questions/189645/how-to-break-out-of-multiple-loops-in-python, some of which are similar if not identical to answers you've all ready been given. -- My fellow Pythonistas, ask not what our language c

Re: Pyhon 2.x or 3.x, which is faster?

2016-03-07 Thread Mark Lawrence
sk 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: Pyhon 2.x or 3.x, which is faster?

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

Re: Pyhon 2.x or 3.x, which is faster?

2016-03-07 Thread Mark Lawrence
On 08/03/2016 01:47, BartC wrote: On 08/03/2016 01:12, Mark Lawrence wrote: On 08/03/2016 01:00, BartC wrote: If your efforts manage to double the speed of reading file A, then probably the reading file B is also going to be improved! In practice you use a variety of files, but one at a time

Re: Pyhon 2.x or 3.x, which is faster?

2016-03-07 Thread Mark Lawrence
As for the real world, as opposed to benchmarks, how about this https://www.willmcgugan.com/blog/tech/post/realtime-events-with-the-inthingio-python-api/ ? -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence -- https://mail.pyt

Re: breaking out of outer loops

2016-03-07 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: Pyhon 2.x or 3.x, which is faster?

2016-03-07 Thread Mark Lawrence
here https://wiki.python.org/moin/PythonSpeed/PerformanceTips -- 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: Pyhon 2.x or 3.x, which is faster?

2016-03-08 Thread Mark Lawrence
On 08/03/2016 11:09, BartC wrote: On 08/03/2016 02:45, Mark Lawrence wrote: On 08/03/2016 01:47, BartC wrote: The Python timing for that file is around 20 seconds, time enough to read 1 copies from the disk. And a C program reads /and decodes/ the same file from the same disk in between

Re: Pyhon 2.x or 3.x, which is faster?

2016-03-08 Thread Mark Lawrence
care less about that fact? -- 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: Pythonic love

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

Re: Pyhon 2.x or 3.x, which is faster?

2016-03-08 Thread Mark Lawrence
On 08/03/2016 19:15, BartC wrote: On 08/03/2016 16:09, Mark Lawrence wrote: On 08/03/2016 11:09, BartC wrote: On 08/03/2016 02:45, Mark Lawrence wrote: On 08/03/2016 01:47, BartC wrote: The Python timing for that file is around 20 seconds, time enough to read 1 copies from the disk

Re: Pyhon 2.x or 3.x, which is faster?

2016-03-09 Thread Mark Lawrence
about for it) 180 seconds for 80Mpixel file. Surely the start-up time would be the same no matter what the input. Mark seems to think that it's completely irrelevant, but that's surely wrong. The exact opposite actually. I'm trying to make sense of these so called ben

Re: Public Service Announcement: planetpython.org

2016-03-09 Thread Mark Lawrence
t about the one stop shop that is gmane years before I acually did. -- 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

<    13   14   15   16   17   18   19   20   21   22   >