I don 't understand the meaning of this mail Verzonden vanaf mijn Galaxy
Oorspronkelijk bericht Van: python-list-requ...@python.org
Datum: 04-11-23 17:01 (GMT+01:00) Aan: python-list@python.org Onderwerp:
Python-list Digest, Vol 242, Issue 3 Send Python-list mailing
Python-list On
Behalf Of Christman, Roger Graydon
Sent: Sunday, January 1, 2023 7:31 PM
To: python-list@python.org
Subject: Re: Python-list Digest, Vol 232, Issue 1
Re: Nonetype List
In my introductory programming course, I have drawn some attention to this
behavior regarding mutating lists. In
n-list on behalf of
python-list-requ...@python.org
Sent: Sunday, January 1, 2023 12:00 PM
To: python-list@python.org
Subject: Python-list Digest, Vol 232, Issue 1
Send Python-list mailing list submissions to
python-list@python.org
To subscribe or unsubscribe via the World Wide Web, visit
python-list-ow...@python.org
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of Python-list digest..."
> Today's Topics:
>
>1. RE: [RELEASE] Python 3.10.6 is available (jsch...@sbcglobal.net)
>2. Clabate: min
ython-list
> or, via email, send a message with subject or body 'help' to
> python-list-requ...@python.org
>
> You can reach the person managing the list at
> python-list-ow...@python.org
>
> When replying, please edit your Subject line so it is mor
On 09/06/2020 18:31, Joseph Jenne via Python-list wrote:
On 2020-06-09 09:00, zljubi...@gmail.com wrote:
Well the problem that I am facing with is, that I have to establish
interface between python and outer system.
Original question was about creation of input object (data that I have
recei
On 2020-06-09 09:00, zljubi...@gmail.com wrote:
Well the problem that I am facing with is, that I have to establish interface
between python and outer system.
Original question was about creation of input object (data that I have received from outer system).
If I accept recommendation to use
On 28/01/20 5:17 AM, Michael Torrie wrote:
On 1/27/20 12:03 AM, אורי wrote:
Please don't reply to digest.
Replying to a digest is just fine. Just make sure to change the subject
line in the future so people know what it's referring to.
Excepting that whilst this practice (subject to faithful
On 1/27/20 12:03 AM, אורי wrote:
> Please don't reply to digest.
Replying to a digest is just fine. Just make sure to change the subject
line in the future so people know what it's referring to.
--
https://mail.python.org/mailman/listinfo/python-list
: Python-list
> Namens python-list-requ...@python.org
> Verzonden: zondag 26 januari 2020 18:00
> Aan: python-list@python.org
> Onderwerp: Python-list Digest, Vol 196, Issue 26
>
> Send Python-list mailing list submissions to
> python-list@python.org
>
> To subscribe
orspronkelijk bericht-
Van: Python-list Namens
python-list-requ...@python.org
Verzonden: zondag 26 januari 2020 18:00
Aan: python-list@python.org
Onderwerp: Python-list Digest, Vol 196, Issue 26
Send Python-list mailing list submissions to
python-list@python.org
To subscribe o
7, 2019 10:28 AM
> To: python-list@python.org
> Subject: Python-list Digest, Vol 189, Issue 17
>
> ---External Email---
>
> Send Python-list mailing list submissions to
> python-list@python.org
>
> To subscribe or unsubscribe via the World Wide Web, visit
>
ehalf Of
python-list-requ...@python.org
Sent: Monday, June 17, 2019 10:28 AM
To: python-list@python.org
Subject: Python-list Digest, Vol 189, Issue 17
---External Email---
Send Python-list mailing list submissions to
python-list@python.org
To subscribe or unsubscribe via the World Wid
On ven., Mar 29, 2019 at 4:51 PM, python-list-requ...@python.org wrote:
On Thu, Mar 28, 2019 at 2:30 PM Alexey Muranov
wrote:
On jeu., mars 28, 2019 at 8:57 PM, Terry Reedy
wrote:
> Throwing the name away is foolish. Testing functions is another
> situation in which function names are
Afriyie Abraham Kwabena writes:
> ...
> Thanks for the reply maybe I did not explain myself very well but is it
> possible to apply this scenario to a database server like MySQL where I can
> write some python code to post, get, delete, etc to the database? However the
> client (python code I h
elp' to
>python-list-requ...@python.org
>
> You can reach the person managing the list at
>python-list-ow...@python.org
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of Python-list digest..."
> Today
On 14 May 2018 at 20:02, Paul wrote:
> 1) I understand the added cost of verifying the sequence. However, this
> appears to be a one-time cost. E.G., if I submit this,
>
> random.choices(lm,cum_weights=[25,26,36,46,136],k=400
>
> then the code will do an O(n log n) operation 400 times.
>
> If ve
Hello all,
Thanks for the thoughtful (and non-snarky) replies.
First, a suggestion for a documentation change:
To this paragraph:
*If neither weights nor cum_weights are specified, selections are made with
equal probability. If a weights sequence is supplied, it must be the same
length as the
On Thu, Dec 7, 2017 at 5:11 AM, Peter Otten <__pete...@web.de> wrote:
> Chris Angelico wrote:
>
>> On Thu, Dec 7, 2017 at 3:56 AM, Dennis Lee Bieber
>> wrote:
>>> Granted, the statistics module in newer Python releases makes the
>>> entire assignment trivial...
>>>
>>> ClgubaJva 3.5.3 (qrs
On Wed, Dec 6, 2017, ssghotra1997 wrote:
import random
def rollDie(num):
sides = {'One':0, 'Two':0,'Three':0,'Four':0,'Five':0,'Six':0}
for i in range(num):
rolls = int(random.randint(1, 6)
if rolls == 1:
sides['One'] += 1
if rolls == 2:
si
Chris Angelico wrote:
> On Thu, Dec 7, 2017 at 3:56 AM, Dennis Lee Bieber
> wrote:
>> Granted, the statistics module in newer Python releases makes the
>> entire assignment trivial...
>>
>> ClgubaJva 3.5.3 (qrsnhyg, Wha 26 2017, 16:17:54) [ZFP i.1900 64 ovg
>> (NZQ64)] ba jva32.
>
> Is t
On Thu, Dec 7, 2017 at 3:56 AM, Dennis Lee Bieber wrote:
> Granted, the statistics module in newer Python releases makes the
> entire assignment trivial...
>
> ClgubaJva 3.5.3 (qrsnhyg, Wha 26 2017, 16:17:54) [ZFP i.1900 64 ovg
> (NZQ64)] ba jva32.
Is this from the Function Call of Cthulu
I think I also came up with 4 as "the most frequent number".
It is unclear ot me how you came up with 3.36 as the most common number,
because I tried rolling a six-sided die myself several times,
and somehow 3.36 didn't come up even once!
On Wed, Dec 6, 2017, D'Arcy Cain wrote:
>
On 12/05/2017 0
nospam."ROGER GRAYDON CHRISTMAN" (ROGER GRAYDON CHRISTMAN)
writes:
> I'll answer your question with a couple questions:
Roger, your messages often are not replies to the original message, but
replies to a “digest” composed by the mailing list.
The digest messages are useful, but only for the re
I'll answer your question with a couple questions:
Why do you expect to get the results you seem to expect?
What part of your code should repeat (and why)?
A key factor in recognizing the difference between 'if' and 'while' is knowing
what effect they have on the indented statements that follow
I'll answer your question with a couple questions:
Why do you expect to get the results you seem to expect?
What part of your code should repeat (and why)?
A key factor in recognizing the difference between 'if' and 'while'
is knowing what effect they have on the indented statements
that follow
lp' to
> python-list-requ...@python.org
>
> You can reach the person managing the list at
> python-list-ow...@python.org
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of Python-list digest..."
>
&
Hi Roger,
Unfortunately you seem to have messed up the quoting (*and* the subject line,
and the threading) for this post. The perils of replying to digests.
I'll try to repair the worst of the misquoted text as I go, but if I
accidentally attribute something I said to you, well, that's only becau
The opinions I give in this post are not as strong as
the opinions I expressed before about the loop claiming
to count all the way to 2**64. But I'll give them anyway.
I don't mind having return's inside an if statement, when
the function ends with that if statement. It becomes very clear
then
On Thu, Oct 12, 2017 08:05 AM, Steve D'Aprano wrote:>
On Wed, 11 Oct 2017 10:57 pm, Stefan Ram wrote:
>
>> FWIW, in is book "Touch of Class" (2009) Bertrand
>Meyer writes:
>>
>> |Such instructions are just the old goto in sheep's clothing.
>> |Treat them the same way as the original:
>> |
>> |/To
On Wed, Oct 4, 2017 22:42 Stefan Ram (r...@zedat.fu-berlin.de) wrote:
>
Steve D'Aprano writes:
>>So, "bottom-up" in this case means: iterators should be
>>taught before for-loops.
>>Why?
>
> The syntax for is (from memory):
>
>for in :
>
> . As an example, I might show:
>
>for i in range( 3 )
On Wed, Oct 4, 2017 14:54, Chris Angelico wrote:
>
On Wed, Oct 4, 2017 at 2:48 PM, Steve D'Aprano
> wrote:
>> On Wed, 4 Oct 2017 01:40 pm, Chris Angelico wrote:
>>
>> You know, you don't HAVE to economize on letters. It's okay to call
>> your parameters "prompt" instead of "prmt". Remember, tha
python.org
When replying, please edit your Subject line so it is more specific
than "Re: Contents of Python-list digest..."
Today's Topics:
1. Re: using HTTPHandler cause Django server side shows http 400
and Invalid HTTP_HOST header message (iMath)
2. Re: using
Thank you and ok
--
Sent from Gmail Mobile
--
https://mail.python.org/mailman/listinfo/python-list
end a message with subject or body 'help' to
> python-list-requ...@python.org
>
> You can reach the person managing the list at
> python-list-ow...@python.org
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents
On Mon, Apr 6, 2015 at 5:52 AM, Steven D’Aprano wrote:
> I understand that Gmail is a pig about these sorts of things, and makes it
> really hard to avoid breaking list etiquette. We appreciate whatever you
> can do, and while a few of us may bark occasionally, we don't bite.
Oh my days, I’m real
Sent from my Windows Phone From: python-list-requ...@python.org
Sent: 05-08-2014 15:37
To: python-list@python.org
Subject: Python-list Digest, Vol 131, Issue 6
Send Python-list mailing list submissions to
python-list@python.org
To subscribe or unsubscribe via the World Wide Web, visit
Ramas Sami writes:
> My Python 3.3 is shutting down soon I open the new file or existing
> Python file
Please start a new thread to start a new discussion.
Also, *before* you want to participate, don't reply to a digest message.
Instead, first disable “digest mode” in your subscription setting
On 6/3/2014 6:07 AM, Ramas Sami wrote:
My Python 3.3 is shutting down soon I open the new file or existing
Python file
Ramas, DO NOT reply to the digest with 100s of lines of other messages.
Start a new thread.
DO include enough information with your question so it can possibly be
answered
lease edit your Subject line so it is more specific
> than "Re: Contents of Python-list digest..."
>
> Today's Topics:
>
>1. Re: Can someone suggest better resources for learning
> sqlite3? Iwanted to use the Python library but I don't know
> From: Gregory Ewing
> To: python-list@python.org
> Is 'dash' the same as 'literal("-")'?
>
Yes, it's a convenience method, like 'dot' and 'underscore'. The code I
pasted is from the unit tests, where I use the different methods to push
coverage up.
> Is there any difference between 'then' and
Hi,
Okey i will change the function name :) Do you have any suggestion to
generate the weight at run time rather than hard coding it...
>
> -- Forwarded message --
> From: Dennis Lee Bieber
> To: python-list@python.org
> Cc:
> Date: Sat, 23 Feb 2013 14:03:23 -0500
> Subject: Re: N
- Original Message -
> Hi, I don't know if I should ask this on here, or in the tutor
> section, but I heard that http://www.lighttable.com was an
> innovative IDE, so I was wondering if it works for python since I'm
> learning python over time. Thanks
Hi,
Please do not use html f
list-requ...@python.org
>
> You can reach the person managing the list at
> python-list-ow...@python.org
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of Python-list digest..."
>
> Today's Topics:
>
&g
TKS, Ulrich.
I finally write some back (self.transport.write()), and shutdown the
connections.
>
> -- 已转发邮件 --
> From: Ulrich Eckhardt
> To: python-list@python.org
> Cc:
> Date: Tue, 15 Jan 2013 13:46:52 +0100
> Subject: Re: interrupt the file sending if the file size over the
>
>
>
>
> -- Weitergeleitete Nachricht --
> From: Dave Angel
> To: python-list@python.org
> Cc:
> Date: Thu, 10 Jan 2013 00:56:20 -0500
> Subject: Re: subprocess.Popen and multiprocessing fails to execute
> external program
> On 01/09/2013 11:08 PM, Niklas Berliner wrote:
> > I hav
Message ignored: Did not match any rules
-Original Message-
Subject: Python-list Digest, Vol 108, Issue 248
To: python-list@python.org
From: python-list-requ...@python.org
Send Python-list mailing list submissions to
python-list@python.org
To subscribe or unsubscribe via the
- Original Message -
> Hi,
> I have a question about Django. I easy_installed Django1.4 and
> psycopg2, and python manage.py syncdb. And gave me a error; No
> module named psycopg2.extensions. posgre9.1 is installed.
> It works fine on my MAC but not my Windows. Does anyone know about
> t
Hi,
I have a question about Django. I easy_installed Django1.4 and psycopg2,
and python manage.py syncdb. And gave me a error; No module named
psycopg2.extensions. posgre9.1 is installed.
It works fine on my MAC but not my Windows. Does anyone know about
this issue
Hope to resolve this issue soon
On 10/4/2012 12:20 AM, python-list-requ...@python.org wrote:
How do you know that?
No offence, but if you can't even work out whether lookups in a dict or a
list are faster, I can't imagine why you think you can intuit what the
fastest way to retrieve the nearest neighbours would be.
Whats wro
Hi,
Where do I find ArcPy.py?
It seems that the link disappeared.
Regards.
David--
http://mail.python.org/mailman/listinfo/python-list
Ve.,zaxfaž
Odeslzvané z telefonu HTC
- Reply message -
Od: python-list-requ...@python.org
Komu:
Předmět: Python-list Digest, Vol 106, Issue 170
Datum: čt, 7. 26, 2012 14:10
z--
http://mail.python.org/mailman/listinfo/python-list--
http://mail.python.org/mailman/listinfo/python-list
(a2 + b2 = c2) = (e < | > P a P b P c)
Beschreibt eine Disonanz in Genese.
-- Weitergeleitete Nachricht --
Von:
Datum: 30.06.2012 23:09
Betreff: Python-list Digest, Vol 106, Issue 1
An:
Send Python-list mailing list submissions to
python-list@python.org
To subscr
-list-requ...@python.org"
To: python-list@python.org
Sent: Tuesday, 13 March 2012, 20:35
Subject: Python-list Digest, Vol 102, Issue 64
- Forwarded Message -
Send Python-list mailing list submissions to
python-list@python.org
To subscribe or unsubscribe via the World Wide Web,
Three things up front:
1. Do not reply to digests. If you want to only read, you can use the
digests, but they are not usable for replying, because it is completely
unclear where in a discussion you are entering and what you are relating
your answers to.
2. Do not start new threads by using the re
Hi,
I want building GNU debugger for mingw.
Need the GDB to support python
How should I go about it?
Thanks,
Shambhu
This message contains information that may be privileged or confidential and is
the property of the KPIT Cummins Infosystems Ltd. It is intended only for the
person to whom it i
On Tue, 06 Dec 2011 22:04:36 +0430, Sergi Pasoev wrote:
> Thanks Steven. Maybe you mean Gnu/Linux when you say Linux.
Maybe I do, maybe I don't. Since you're replying to a digest and neither
adjusted the subject line nor trimmed almost a dozen pages of unnecessary
quoted text, I have no idea wh
12/06/11 11:34, Sergi Pasoev wrote:
(after trimming all the digest rubbish the way you should have
done in the first place)
Coincidentally, I was working on that exact function last
night, so you inspired me to put it up on the Python
cookbook. This version should work on any POSIX system such
as
r, via email, send a message with subject or body 'help' to
> python-list-requ...@python.org
>
> You can reach the person managing the list at
> python-list-ow...@python.org
>
> When replying, please edit your Subject line so it is more specific
> than &q
...@python.org
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of Python-list digest..."
>
> Today's Topics:
>
> 1. Re: Questions about LISP and Python. (Xah Lee)
> 2. Re: Questions about LISP and Python. (Chri
On Saturday 24 September 2011 01:48:29 you wrote:
> Ricardo wrote:
> > Hi everyone
> > I'm trying to use the cgi library to create a python script and loading
> > it from a web page. I have already done the necessary imports, and the
> > default commands to receive data from "html" are written too.
Two underscores??!!! OH!!! I thank thee!
--
http://mail.python.org/mailman/listinfo/python-list
Thank you very much
And no, no, I have not been reading a book with bad font =D haha!!
The problem was that I did not inherit from Object... Since I am from a JAVA
background, I assumed that Python would inherit implicitly.
--
http://mail.python.org/mailman/listinfo/python-list
at
>> python-list-ow...@python.org
>>
>> When replying, please edit your Subject line so it is more specific
>> than "Re: Contents of Python-list digest..."
>>
--
http://mail.python.org/mailman/listinfo/python-list
t
> or, via email, send a message with subject or body 'help' to
> python-list-requ...@python.org
>
> You can reach the person managing the list at
> python-list-ow...@python.org
>
> When replying, please edit your Subject line so it is more specific
&
Sometimes
>> I'll drop in suggestions to future maintainers like, "consider
>> refactoring with with perform_frobnitz_action()"
>
> Usually, I address future-me with comments like that (on the
> assumption that there's nobody in the world sadistic enough to want to
> maintain my code). But I neve
On Thu, May 26, 2011 at 8:07 PM, Steven D'Aprano
wrote:
> Another use for comments is to explain *why* rather than *what*. No
> matter how readable your code is, if you don't understand why it is done,
> you can't effectively maintain it. If the why is obvious, you don't need
> a comment.
That's
On Thu, 26 May 2011 14:06:56 +1000, Chris Angelico wrote:
> On Thu, May 26, 2011 at 10:58 AM, Richard Parker
> wrote:
>> It's time to stop having flame wars about languages and embrace
>> programmers who care enough about possible future readers of their code
>> to thoroughly comment it. Comments
>
> On Thu, May 26, 2011 at 10:58 AM, Richard Parker
> wrote:
>> It's time to stop having flame wars about languages and embrace programmers
>> who care enough about possible future readers of their code to thoroughly
>> comment it. Comments are far more valuable than the actual language in which
On Thu, May 26, 2011 at 10:58 AM, Richard Parker
wrote:
> It's time to stop having flame wars about languages and embrace programmers
> who care enough about possible future readers of their code to thoroughly
> comment it. Comments are far more valuable than the actual language in which
> the cod
> Writing code is primarily for *human readers*. Once you've compiled the
> code once, the computer never need look at it again, but human being come
> back to read it over and over again, to learn from it, or for
> maintenance. We rightfully value our own time and convenience as more
> valuab
PIL will compile and install if you don't have some development
libraries and then simply not work or not work up to full steam when
used.
To avoid this, you need to install the appropriate libraries, among
which are:
libjpeg-devel
freetype-devel
libpng-devel
Dear Albert
Thank you for your
> or, via email, send a message with subject or body 'help' to
>python-list-requ...@python.org
>
> You can reach the person managing the list at
>python-list-ow...@python.org
>
> When replying, please edit your Subject line so it is more specific
> than
Alden Meneses wrote:
> YuyYYyYyUuyuuiaAku. UUuqsuiuiuiui
Please post the complete traceback, throw your phone over the right shoulder
and clap your hands just before it hits the ground. That'll fix your
problem.
--
http://mail.python.org/mailman/listinfo/python-list
-list
> or, via email, send a message with subject or body 'help' to
> python-list-requ...@python.org
>
> You can reach the person managing the list at
> python-list-ow...@python.org
>
> When replying, please edit your Subject line so it is more speci
> python-list-ow...@python.org
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of Python-list digest..."
>
--
http://mail.python.org/mailman/listinfo/python-list
end a message with subject or body 'help' to
> python-list-requ...@python.org
>
>You can reach the person managing the list at
> python-list-ow...@python.org
>
>When replying, please edit your Subject line so it is more specific
>than "Re: Contents of
end a message with subject or body 'help' to
> python-list-requ...@python.org
>
>You can reach the person managing the list at
> python-list-ow...@python.org
>
>When replying, please edit your Subject line so it is more specific
>than "Re: Contents of
end a message with subject or body 'help' to
> python-list-requ...@python.org
>
>You can reach the person managing the list at
> python-list-ow...@python.org
>
>When replying, please edit your Subject line so it is more specific
>than "Re: Contents of
'help' to
> python-list-requ...@python.org
>
> You can reach the person managing the list at
> python-list-ow...@python.org
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of Python-list digest..."
--
http://mail.python.org/mailman/listinfo/python-list
'help' to
> python-list-requ...@python.org
>
> You can reach the person managing the list at
> python-list-ow...@python.org
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of Python-list digest..."
--
http://mail.python.org/mailman/listinfo/python-list
ython.org
>
> You can reach the person managing the list at
> python-list-ow...@python.org
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of Python-list digest..."
>
> Today's Topics:
>
> 1. Re: what
ython-list-requ...@python.org"
To: python-list@python.org
Sent: Wed, September 1, 2010 11:52:02 AM
Subject: Python-list Digest, Vol 84, Issue 8
Note: Forwarded message is attached.
Send Python-list mailing list submissions to
python-list@python.org
To subscribe or unsubscribe via the Worl
Hi Terry,
> -- Forwarded message --
> From: Terry Reedy
> To: python-list@python.org
> Date: Mon, 09 Aug 2010 13:15:24 -0400
> Subject: Re: Need mentor
> On 8/9/2010 2:31 AM, Ranjith Kumar wrote:
>
>> I have described the theme of my project here,
>>
>
> Is this a class assignment
On 07/06/2010 12:03 PM, francisco dorset wrote:
> i need resources or books on how to embedding python into c/c++...and
> also extending it
>
> [snip]
What is the digest doing at the end of your message then?
Anyway:
http://docs.python.org/py3k/c-api/index.html
http://docs.python.org/py3k/exten
i need resources or books on how to embedding python into c/c++...and also
extending it
am allergic to cheating, i hate failures, but am in love with achievements
<º><.·´¯`·.F®an©ï§CØ`·.¸¸¸.·´¯`·.¸><º>
From: python-list-requ...@python.org
Subject: Python-l
On 06/26/2010 10:17 AM, anu python wrote:
>
>
> Thanks for your reply to Shashwat Anand & thomas.sub( Help on finding
> word is valid as per English Dictionary through python )
>
> Let me try.
Please don't top post (it makes it difficult to understand what you're
replying to, and is thus con
thon-list-ow...@python.org
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of Python-list digest..."
>
> Today's Topics:
>
> 1. Re: best way to increment an IntVar? (Alan G Isaac)
> 2. Re: Help on finding word is
On Tue, Jun 8, 2010 at 11:57 PM, madhuri vio wrote:
> import tkinter
>
> root = tkinter.Tk() #initialize tkinter and get a top level instance
> root.title("madhuri is a python")
> canvas = tkinter.Canvas(root) #creating the canvas under the root
> canvas.pack() #to call the packer geometry
> canva
:
> import tkinter
>
> root = tkinter.Tk() #initialize tkinter and get a top level instance
> root.title("madhuri is a python")
> canvas = tkinter.Canvas(root) #creating the canvas under the root
> canvas.pack() #to call the packer geometry
> canvas.create_rectangle(20,10,120,80,fill=colors[0])
>
an reach the person managing the list at
>python-list-ow...@python.org
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of Python-list digest..."
>
> Today's Topics:
>
> 1. Re: UnboundLocalError: local variab
On Tue, May 25, 2010 at 1:01 PM, Ian Kelly wrote:
> On Tue, May 25, 2010 at 1:10 PM, wrote:
>> -- Forwarded message --
>> From: Terry Reedy
>> To: python-l...@python.org
>> Date: Tue, 25 May 2010 13:09:23 -0400
>> Subject: Re: Generator expressions vs. comprehensions
>> On 5/25/
On Tue, May 25, 2010 at 1:10 PM, wrote:
> -- Forwarded message --
> From: Terry Reedy
> To: python-l...@python.org
> Date: Tue, 25 May 2010 13:09:23 -0400
> Subject: Re: Generator expressions vs. comprehensions
> On 5/25/2010 3:08 AM, Peter Otten wrote:
>>
>> Michele Simionato wr
Hi All!
I have a huge file and I want to extract subtext starting with "{1:" and
ending with "-}" inclusive. This subtext recurs in many places in the
file and I want the resultant to be in some output file. Any suggestions
about the best way forward.
Nedbank Limited Reg No
please dont send mails
From: "python-list-requ...@python.org"
To: python-list@python.org
Sent: Wed, 12 May, 2010 12:00:02 AM
Subject: Python-list Digest, Vol 80, Issue 108
Note: Forwarded message is attached.
Send Python-list mailing list subm
I wish to unsubscribe with immediate effect!!!
From: python-list-requ...@python.org To: python-list@python.org Sent: Tue Apr
13 17:56:06 SAST 2010 Subject: Python-list Digest, Vol 79, Issue 108 --
http://mail.python.org/mailman/listinfo/python-list--
http://mail.python.org/mailman/listinfo
Thanks, Stefan.
Actually I will have to run the searches I am interested in only a few times
and therefore will drop performance concerns.
Thanks for len(text.split()) .
I will try it later.
The text I am interested in is always in leaf elements.
I have posted a concrete example incl. a represen
En Mon, 01 Feb 2010 07:26:13 -0300, Rohit Roger$
escribió:
Help for datetime module
Source code is :
from datetime import datetime
d = datetime(datetime.now().year, datetime.now().month,
datetime.now().day, 11, 59, 0 )
print d
And your problem is...?
This is what I get:
py> print d
2010
>python-list-requ...@python.org
>
> You can reach the person managing the list at
>python-list-ow...@python.org
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of Python-list digest..."
>
> Today
[top posting corrected]
From: Steve Holden
Date: Tue, 26 Jan 2010 11:54:23 -0500
Anyway, I suspect your error might go away if you turned the first
argument of hte log.info() call into a format string such as
log.info("refer: %s", ret)
try:
log.info("start")
log.info("refer",ret)
1 - 100 of 219 matches
Mail list logo