On 6/3/14 12:29 PM, Deb Wyatt wrote:
http://www.spontaneoussymmetry.com/blog/archives/438
Deb in WA, USA
The article is bogged down in unnecessary complications with regard to
mutability (or not) and pass-by reference|value stuff. The author risks
confusing her audience (those who are perh
On 6/3/14 1:26 PM, Skip Montanaro wrote:
From Apple's perspective, there's always platform lock-in. That's good
for them, so it must be good for you, right? :-)
http://www.theregister.co.uk/2014/06/02/apple_aims_to_speed_up_secure_coding_with_swift_programming_language/
The key to this "Swif
On 6/3/14 3:43 PM, Sturla Molden wrote:
Nicholas Cole wrote:
> {snip}
Unfortunately they retained the curly brackets from JS...
The curly braces come from C, and before that B and A/.
(I think others used them too before that, but it escapes me now and I'm
too lazy to google it)
... but
On 6/3/14 11:54 PM, Steven D'Aprano wrote:
I've been passing code snippets by email and Usenet for 15 years or more,
and I've never had a problem with indentation.
Of course, I've had problems with *other people's code*, because they use
broken tools that break the text they send.
Me too.
On 6/4/14 9:24 AM, Skip Montanaro wrote:
Surely your local colleagues realize that Python has been around for
20-odd years now, that indentation-based block structure has been
there since Day One, and that it's not going to change, right?
Yup. Its the primary argument on the side for indenta
On 6/3/14 8:24 PM, Ethan Furman wrote:
Deb, do yourself a favor and just trash-can anything from Mark Harris.
Ouch, that hurt.
Did someone not get their coffee this morning?
:-)
--
https://mail.python.org/mailman/listinfo/python-list
On 6/3/14 8:14 PM, Deb Wyatt wrote:
Well, I'm glad you find this concept straight-forward.
I guess I'm not as smart as you.
Not at all. I think you misunderstood me. I read the article and I
reviewed it (although brief, I stand by what I said).
To expand a bit, the article is poorly writt
On 6/4/14 5:18 PM, Terry Reedy wrote:
On 6/4/2014 10:53 AM, Mark H Harris wrote:
The primary paradigm on this topic locally is that
indents are bad because malformed or mangled code cannot be reformatted
easily (if at all).
Begin solution:':' as the end of a line means 'begi
Greetings, anyone using micro python or Jaltek System's pyboard designed
to run it?
http://micropython.org/
Cheers,
marcus
:)
--
https://mail.python.org/mailman/listinfo/python-list
/collected by a different session, and can be woken up when the data
is ready.
Let me know if anyone is interested in re-using this library. Tested ok on
Linux and Solaris, not tried on Windows yet.
Best regards,
Mark.
--
https://mail.python.org/mailman/listinfo/python-list
Here's something that might be wrong in Python (tried on v2.7):
>>> class int(str): pass
>>> int(3)
'3'
Mark
--
https://mail.python.org/mailman/listinfo/python-list
fying. I hope that there's at
least one person who sees the issue.
Mark
On 5/10/15, Mark Rosenblitt-Janssen wrote:
> Here's something that might be wrong in Python (tried on v2.7):
>
>>>> class int(str): pass
>
>>>> int(3)
> '3'
>
> Mark
>
--
https://mail.python.org/mailman/listinfo/python-list
one has to see the mix-in classes.
I'm inventing a new term for this kind of inheritence: expansion.
I've enclosed one class inside of another, but yet it's not quite
"encapsulation" (in the C++ sense).
Cheers,
Mark J
http://wiki.hackerspaces.org/Hacking_with_th
In case the example given at the start of the thread wasn't
interesting enough, it also works in the other direction:
>>> class str(int): pass
>>> str('2')
2 #<- an integer!!!
Mark
--
https://mail.python.org/mailman/listinfo/python-list
On 6/4/14 10:02 PM, Sanjay Madhikarmi wrote:
I have already install python 2.7 64bit in my windows 8 machine but
while installing PIL 1.1.7 for python 2.7 it says that "Python 2.7
required which was not found in the registry"
Please help me sort out this problem
http://stackoverflow.com/quest
On 6/4/14 10:02 PM, Sanjay Madhikarmi wrote:
I have already install python 2.7 64bit in my windows 8 machine but
while installing PIL 1.1.7 for python 2.7 it says that "Python 2.7
required which was not found in the registry"
Please help me sort out this problem
... also this one;
--
https:
On 6/4/14 10:02 PM, Sanjay Madhikarmi wrote:
I have already install python 2.7 64bit in my windows 8 machine but
while installing PIL 1.1.7 for python 2.7 it says that "Python 2.7
required which was not found in the registry"
... oops, sorry,
also this one:
http://stackoverflow.com/questions/
On 6/5/14 10:39 AM, alister wrote:
{snipped all the mess}
And you have may time been given a link explaining the problems with
posting g=from google groups but deliberately choose to not make your
replys readable.
The problem is that thing look fine in google groups. What helps is
getting to
On 6/5/14 12:18 PM, Michael Torrie wrote:
No they won't be used in the same niche. Objective C is certainly not
used in the same niche as Python, so why would Swift? I don't expect to
see any major OS X app written completely in Python, nor would I expect
and of the core frameworks to be writte
On 6/9/14 3:54 PM, Carlos Anselmo Dias wrote:
Hi ...
I'm finishing my messages with this ...
The first time I looked into Python was +- 10 years ago ... and in the
last 10 years I did not spent more than 30 minutes looking at ... but I
like it ... it's easy to read ... even if I'm not familiar
On 6/10/14 3:41 PM, leo kirotawa wrote:
Guys I'm from Brazil too, and I'm ashamed for this troll.
Don't feed the troll bot.
OTOH, it might be fun to feed it some weird subject|predicate phrases to
see what it does with them.
Bots eat bananas because bouncing on berries becomes beenie baby
On 6/11/14 8:26 AM, Robert Kern wrote:
Anyways, to your new problem, yes it's possible. Search for "regular
expression intersection" for possible approaches.
I agree, I would not use a decision (decision tree) but would consider
a set of filters from most specific to least specific.
marcus
On 6/11/14 10:12 PM, hito koto wrote:
i want to change this is code:
def foo(x):
y = []
while x !=[]:
y.append(x.pop())
return y
Consider this generator (all kinds of permutations on the idea):
>>> L1
[1, 2, 3, 4, 5, 6, 7]
>>> def poplist(L):
while True:
On 6/11/14 10:12 PM, hito koto wrote:
def foo(x):
y = []
while x !=[]:
y.append(x.pop())
return y
Consider this generator variation:
>>> def poplist(L):
done = False
while done==False:
yield L[::-1][:1:]
L = L[::-1][1::]
On 6/12/14 11:55 AM, Marko Rauhamaa wrote:
while not done:
Better Python and not bad English, either.
... and taking Marko's good advice, what I think you really wanted:
>>> def poplist(L):
done = False
while not done:
yield L[::-1][:1:]
L
On 6/12/14 11:57 AM, Chris Angelico wrote:
On Fri, Jun 13, 2014 at 2:49 AM, Mark H Harris wrote:
Consider this generator variation:
def poplist(L):
done = False
while done==False:
yield L[::-1][:1:]
L = L[::-1][1::][::-1
On 6/12/14 11:57 AM, Chris Angelico wrote:
def poplist(L):
done = False
while done==False:
yield L[::-1][:1:]
L = L[::-1][1::][::-1]
if len(L)==0: done=True
Why not just "while L"?
OK, here it is with Chris' excellent adv
On 10/9/14 7:47 AM, [email protected] wrote:
I believe control-click, but Macs users could say better.
Control-click was the canonical way to do it when right click menus were
introduced in Mac OS itself. Some programs (notably Netscape) supported
them via click-hold before that. And it's
On 10/9/14 7:21 AM, [email protected] wrote:
My audience consists of people having linux and windows and macbooks.
Does Idle run on all these?
---
No.
Huh?
--
https://mail.python.org/mailman/listinfo/python-list
On 10/9/14 1:52 AM, Rustom Mody wrote:
> Been using emacs for over 20 years and teaching python for 10.
> And getting fed up that my audience looks at me like Rip van Winkle
> each time I start up emacs...
(sigh)
> So trying out Idle...
Good for you! ... and even better for your students.
On Fri, 15 Feb 2013 22:52:57 -0500, Mitya Sirenef
wrote:
>On 02/15/2013 10:22 PM, eli m wrote:
>> Any small program ideas? I would prefer to stick to command line ones.
>> Thanks.
>
>How about these two:
>
> - simulation of a street crossing with green/red lights allowing cars
>and pedestrians
On Fri, 15 Feb 2013 19:57:35 -0800 (PST), eli m
wrote:
>On Friday, February 15, 2013 7:52:57 PM UTC-8, Mitya Sirenef wrote:
>> On 02/15/2013 10:22 PM, eli m wrote:
>>
>> > Any small program ideas? I would prefer to stick to command line ones.
>> > Thanks.
>>
>>
>>
>> How about these two:
>>
quot;, line 1, in ?UnicodeDecodeError: 'unicodeescape' codec can't decode byte 0x5c in
position 0: \ at end of stringTo report a bug, follow the directions at the bottom of this page:http://www.python.org/2.4.2/bugs.html
Bug Logged:
1379994 (http://sourceforge.net/tracker/
hat shallow copies (of objects built from immutable types)
should be able to be speed up by memory mapping (somehow!). The top-level
list/rule should be the only new reference that needs to be created.
Any quick answers or most likely directions to explore, would be greatly
appreciated.
Regards
Michael Spencer wrote:
> Mark E. Fenner wrote:
>
>>
>> and the copy is taking the majority (42%) of my execution time.
>> So, I'd like to speed up my copy. I had an explicit copy method that did
>> what was needed and returned a new object, but this was q
John Machin wrote:
>
> Mark E. Fenner wrote:
>
>> Here's my class of the objects being copied:
>
> Here's a couple of things that might help speed up your __init__
> method, and hence your copy method:
>
>>
>> class Rule(list):
>> de
Mark E. Fenner wrote:
> John Machin wrote:
>
>>
>> Mark E. Fenner wrote:
>>
>>> Here's my class of the objects being copied:
>>
>> Here's a couple of things that might help speed up your __init__
>> method, and hence your copy me
danielx wrote:
>
> Mark E. Fenner wrote:
>> Mark E. Fenner wrote:
>>
>> > John Machin wrote:
>> >
>> >>
>> >> Mark E. Fenner wrote:
>> >>
>> >>> Here's my class of the objects being copied:
>> >
Paul McGuire wrote:
> "Mark E. Fenner" <[EMAIL PROTECTED]> wrote in message
> news:[EMAIL PROTECTED]
>> Hello all,
>>
>
>>
>> Here's my class of the objects being copied:
>>
>> class Rule(list):
>> def __init__(s
he root/included_root
etree.remove(etree.find('./included_root'))
dump(etree)
http://www.w3.org/2001/XInclude";>
Thanks for the help.
Mark
--
http://mail.python.org/mailman/listinfo/python-list
etter than creating a bag class
that has a defaultdict as a member. So, inheriting from defaultdict and
defining some of the nice utility methods that Hettinger's class defines
seems like the way to go. Comments?
Regards,
Mark
--
http://mail.python.org/mailman/listinfo/python-list
Hi,
I'm trying to make a Audio CD ripper using python.
is there a way (library, module, etc) to detect when a CD was inserted
or ejected?
--
http://mail.python.org/mailman/listinfo/python-list
On Mar 13, 11:07 am, Larry Bates <[EMAIL PROTECTED]> wrote:
> Mark Bryan Yu wrote:
> > Hi,
>
> > I'm trying to make a Audio CD ripper using python.
>
> > is there a way (library, module, etc) to detect when a CD was inserted
> > or ejected?
>
>
Here's the initial release of my personal open source project to
create a Python CD ripper in Linux.
Punit is a Audio CD ripper for Linux using cdparanoia, LAME and
CDDB.py (http://cddb-py.sourceforge.net/)
http://www.programmingmind.com/bryan/punit.html
--
http://mail.python.org/mailman/listin
e wheel movements
to be made.
* menuwrapper.Menu.GetProperties() now returns a dict like all other
GetProperties() methods. This dict for now only has one key
'MenuItems' which contains the list of menuitems (which had been
the previous return value).
Thanks
Mark
----
Where should these be be set?
Is there a particular .h file? Are any of them implied by the debugging
options to make and ./configure?
Regards,
Mark
--
http://mail.python.org/mailman/listinfo/python-list
data, addr = udps.recvfrom(1024)
p=DNSQuery(data)
udps.sendto(p.respuesta(ip), addr)
print 'Respuesta: %s -> %s' % (p.dominio, ip)
except KeyboardInterrupt:
print 'Finalizando'
udps.close()
Thanks to everyone in advance!
~Mark
--
http://mail.python.org/mailman/listinfo/python-list
That's embarrassingly simple! Thank you very much!!
On Mar 11, 4:03 am, [EMAIL PROTECTED] wrote:
> On 10 Mar, 23:58, Mark M Manning <[EMAIL PROTECTED]> wrote:
>
>
>
> > I need your expertise with a sockets question.
>
> > Let me preface this by sa
This set of codes works:
>>> x = range(5)
>>> x.reverse()
>>> x
[4, 3, 2, 1, 0]
But this doesn't:
>>> x = range(5).reverse()
>>> print x
None
Please explain this behavior. range(5) returns a list from 0 to 4 and
reverse just reverses the items on the list that is returned by
range(5). Why is x
that the window was active.
* Fixed Bug 1452832 where clipboard was not closed in
clipboard.GetData()
* Added more unit tests now up to 248 from 207
If you want to follow this project then please sign up to the mailing
list:
https://lists.sourceforge.net/mailman/listinfo/pywinauto-users
Thanks
Mark
--
http://mail.python.org/mailman/listinfo/python-list
or Winspector - which I use all the time.
(http://www.windows-spy.com/)
>
> thanks,
>
> bryan
>
Thank you!
Mark
--
http://mail.python.org/mailman/listinfo/python-list
or Winspector - which I use all the time.
(http://www.windows-spy.com/)
>
> thanks,
>
> bryan
>
Thank you!
Mark
--
http://mail.python.org/mailman/listinfo/python-list
ken when viewed there.
* Moved all timing information into the timings.Timings class. There
are
some simple methods for changing the timings.
If you want to follow this project then please sign up to the mailing
list:
https://lists.sourceforge.net/mailman/listinfo/pywinauto-user
Hi
Can anyone tell me where to go to suggest changes to the Python
documentation?
Thanks.
--
http://mail.python.org/mailman/listinfo/python-list
On Thursday, July 5, 2018 at 6:24:09 PM UTC+1, Tim Williams wrote:
> On Thu, Jul 5, 2018 at 9:02 AM Mark Summerfield via Python-list <
> [email protected]> wrote:
>
> > For GUI programming I often use Python bindings for Qt.
> >
> > There are two co
In the end I changed to a completely different approach.
I now have two parallel directories, one with PySide-based code and the other
with auto-generated PyQt-based code. And I created a tiny script to copy the
PySide code to the PyQt directory & do the necessary changes. (I can post the
scrip
On Friday, July 6, 2018 at 1:22:46 PM UTC+1, Bev in TX wrote:
> > On Jul 6, 2018, at 3:14 AM, Mark via Python-list
> > wrote:
> >
> > In the end I changed to a completely different approach.
> >
> > I now have two parallel directories, one with PySide-bas
er besides python, please let me know.
Thanks for your help.
Mark
___
Join Excite! - http://www.excite.com
The most personalized portal on the Web!
--
http://mail.python.org/mailman/listinfo/python-list
, Met vriendelijke groet,
Mark Scholten
Stream Service
Web: http://www.streamservice.nl/
E-mail: [EMAIL PROTECTED]
NOC: http://www.mynoc.eu/
NOC e-mail: [EMAIL PROTECTED]
Tel.: +31 (0)642 40 86 02
Fax: +31 (0)20 20 101 57
KVK: 08141074
BTW: NL104278274B01--
http://mail.python.org/mailman/listinfo
Hello,
Thank you for the information, I will also contact them.
With kind regards, Met vriendelijke groet,
Mark Scholten
Stream Service
Web: http://www.streamservice.nl/
E-mail: [EMAIL PROTECTED]
NOC: http://www.mynoc.eu/
NOC e-mail: [EMAIL PROTECTED]
Tel.: +31 (0)642 40 86 02
Fax: +31 (0)20 20
Rob. Did you ever figure this out. It's driving me crazy too.
Mark McGirr
Land Information Specialist
Regional Client Services Division
Integrated Land Management Bureau
Ministry of Agriculture and Lands
it.com/r/Python/comments/6z6wst/twisted_is_93_ported_to_python_3/
a little project called Twisted is 93% ported to Python 3.
--
My fellow Pythonistas, ask not what our language can do for you, ask
what you can do for our language.
Mark Lawrence
---
This email has been checked for viruses by AVG.
htt
6, 1600), ('THE SHORTS', 7, 1100), ('KINGTON TOWN
STAKES', 8, 2000), ('BM 84 HANDICAP', 9, 1200)]
I get close creating a list of elements but each attempt I try to create the
list of tuples fails.
This is my closest code
data = r.json()
raceData = []
for item in data["RaceDay"]['Meetings'][0]['Races']:
raceDetails = item['RacingFormGuide']['Event']['Race']
raceData +=
(raceDetails['Name'],raceDetails['Number'],raceDetails['Distance'])
print(raceDetails)
which returns
['CLASS 3 HANDICAP', 1, 1000, 'BM 90 HANDICAP', 2, 1600, 'HERITAGE STAKES', 3,
1100, 'BILL RITCHIE HANDICAP', 4, 1400, 'TEA ROSE STAKES', 5, 1400, 'GEORGE
MAIN STAKES', 6, 1600, 'THE SHORTS', 7, 1100, 'KINGTON TOWN STAKES', 8, 2000,
'BM 84 HANDICAP', 9, 1200]
How do I get the tuples?
Cheers
Sayth
---
This email has been checked for viruses by AVG.
http://www.avg.com
After a quick glance and hence completely untested:-
raceData.append((raceDetails['Name'],raceDetails['Number'],raceDetails['Distance']))
--
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
nistas, ask not what our language can do for you, ask
what you can do for our language.
Mark Lawrence
---
This email has been checked for viruses by AVG.
http://www.avg.com
--
https://mail.python.org/mailman/listinfo/python-list
n yet.
The reference implementation is written in C but there's also Jython
(Java) and IronPython (.Net).
--
My fellow Pythonistas, ask not what our language can do for you, ask
what you can do for our language.
Mark Lawrence
---
This email has been checked for viruses by AVG.
http://w
On 23/09/2017 04:06, Bill wrote:
Mark Lawrence wrote:
On 22/09/2017 08:01, Bill wrote:
Steve D'Aprano wrote:
On Fri, 22 Sep 2017 02:57 pm, Bill wrote:
I find Python to be more more
like Java, with regard to "passing objects by reference".
Which is not a surprise, since both
(and_, or_):
for a, b in product(bools, repeat=2):
ans = logic(a, b)
print(f'{a} {l[logic]} {b} is {ans}')
print()
for b in bools:
print(f'Not {b} is {not b}')
--
My fellow Pythonistas, ask not what our language can do for you, ask
what you can do
ion for) onto the computers in the school. Therefore, I'm looking for
something in the Python 3.6 Standard Library.
Thanks in advance,
Irv
Hopefully this https://docs.python.org/3/howto/pyporting.html will help.
--
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
the `dest` argument to `add_argument()` which can specify a different
name for the attribute used in code (it's almost like they thought about
this type of problem ;o)). If it's from `optparse`, that has a similar
argument, but `optparse` is deprecated so consider updating to `argparse`.
(Recently there has been an effort to provide clearer and more useful
error messages; this seems to be a case where there is still room for
improvement: "SyntaxError: invalid syntax" doesn't immediately remind me
of that fact that 'return' is a keyword and therefor can't be used as an
attribute.)
--
Mark.
--
https://mail.python.org/mailman/listinfo/python-list
re something I'm doing wrong here? Or does this seem like a bug
in unittest.mock that I should report? Perhaps this is something that's
not often done, so the issue hasn't been noticed before. Trying to
search for information generally leads back to the unittest.mock
documenta
For GUI programming I often use Python bindings for Qt.
There are two competing bindings, PySide and PyQt.
Ideally I like to have applications that can use either. This way, if I get a
problem I can try with the other bindings: if I still get the problem, then it
is probably me; but if I don't
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
s :( What have I missed? Python 3.5.1 on Windows 10.
--
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
creasingly rare.
Grab 3.5.1 from here https://www.python.org/downloads/
--
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
On 30/03/2016 15:45, ast wrote:
"Mark Lawrence" a écrit dans le message de
news:[email protected]...
I believe something like this should suffice to display borders around
the radiobuttons.
import tkinter as tk
import tkinter.ttk as ttk
root = tk.
On 30/03/2016 15:55, ast wrote:
"ast" a écrit dans le message de
news:[email protected]...
"Mark Lawrence" a écrit dans le message de
news:[email protected]...
I believe something like this should suffice to displa
ndeed IMHO it's enumerate() that will be a confusing duplication.
Please explain how a builtin that was brought in due to popular demand
can be a "confusing duplication".
--
My fellow Pythonistas, ask not what our language can do for you, ask
what you can do for our language.
Mar
quot;, no further comment needed.
--
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
ython-tkinter-discuss/3373/ ?
--
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
nd', 'price': '295.00
as you can see the option element was added third but is the first one
displayed.
Is this just standard - I am using Python 3.5
Yes, as you are using a standard dict within the list. There is
https://docs.python.org/3/library/collections.html#collections.OrderedDict
which retains the insertion order.
Regards
Colin
--
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
().
As this is a Python list the above definition clearly takes priority
over your definition, so can you please take this discussion offline,
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
On 31/03/2016 13:49, Marco Sulla via Python-list wrote:
On 31 March 2016 at 14:30, Mark Lawrence via Python-list
wrote:
Note that dict also supports
__getitem__() and __len__(), but is considered a mapping rather than a
sequence because the lookups use arbitrary immutable keys rather than
r you, ask
what you can do for our language.
Mark Lawrence
--
https://mail.python.org/mailman/listinfo/python-list
On 31/03/2016 14:27, Random832 wrote:
On Thu, Mar 31, 2016, at 09:17, Mark Lawrence via Python-list wrote:
On 31/03/2016 14:08, Antoon Pardon wrote:
Op 31-03-16 om 13:57 schreef Chris Angelico:
Okay. I'll put a slightly different position: Prove that your proposal
is worth discussi
On 01/04/2016 08:59, Antoon Pardon wrote:
Op 31-03-16 om 16:12 schreef Mark Lawrence via Python-list:
On 31/03/2016 14:27, Random832 wrote:
So can we discuss how a unified method to get a set of all valid
subscripts (and/or subscript-value pairs) on an object would be a useful
thing to have
.
I would suggest that you search the archives, but that would upset
teacher, so I won'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
language.
Mark Lawrence
--
https://mail.python.org/mailman/listinfo/python-list
ed to have Bots here commenting on the Python
language. Obviously they've all given up as so much drivel is spouted,
and/or they've gone to join the Norwegian Blue.
--
My fellow Pythonistas, ask not what our language can do for you, ask
what you can do for our language.
Mark Lawren
he problem, other than
failure to RTFM?
--
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
expect the sort would be slower than most of the other suggestions.
My gut feeling about how fast something is in Python has never once been
right in 15 years. There is only way way to find out, measure it with
things like https://docs.python.org/3/library/profile.html and
https://docs.python.org/3/library/timeit.html. IIRC Steven D'Aprano has
a wrapper for the latter called Stopwatch.
--
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
rk, as I'm just venturing
into the tkinter world.
--
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
--
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
bout Python. OTOH there are loads of people here
who do know Python, backwards, sideways and inside out. If you state
precisely what you are trying to achieve then you will get the correct
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
BartC is renowned for knowing nothing about Python by his own
admittance, and would you please not top post on the list.
--
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
uad, let alone the starting lineup.
Of course this is completely irrelevant on the Python programming main
mailing list, but it appears that any old crap is acceptable in the year
2016.
A Bot, a Bot, any kingdom for a Bot.
--
My fellow Pythonistas, ask not what our language can do for you, ask
wha
h is the most efficient, I'll leave that to others to test.
--
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
hat would happen to the poor little
darlings if they had to spend the entire match on the pitch?
--
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
ch?cq=range would appear to be as good a
starting point as any.
--
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
On 02/04/2016 23:49, Michael Torrie wrote:
Mark, your messages are showing up to the list as being from "python,"
at least on my email. Any reason for this?
Assuming that you're referring to me, frankly I haven't a clue. I read
this list with Thunderbird on Windo
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
5701 - 5800 of 5842 matches
Mail list logo