Albert Hopkins wrote:
On Wed, 2008-12-03 at 13:38 -0800, Warren DeLano wrote:
A bottom line / pragmatic question... hopefully not a FAQ.
Why was it necessary to make "as" a reserved keyword?
And more to the point, why was it necessary to prevent developers from
being able to refer to attrib
Xah Lee wrote:
> Come flying $5 to my paypal account, and i'll give you real code,
> amongest the programing tech geekers here for all to see.
That's the problem with Mathematica - it's so expensive that you even
have to pay for simple benchmark programs.
--
http://mail.python.org/mailman/listinfo
> I'll pay $20 to see your improved version of the code. The only
> references to PayPal I saw on your website were instructions to direct
> the payment to [EMAIL PROTECTED], please let me know if that is correct.
>
> What I want in return is you to execute and time Dr. Harrop's original
> code, po
In message <[EMAIL PROTECTED]>, Philip
Semanchuk wrote:
> In my experience, the environment in which a cron job runs is
> different from the environment in which some command line scripts run...
Which is true, but again, cron should report the environment in the mail
message. For example, here ar
On Dec 3, 4:38 pm, Steven D'Aprano <[EMAIL PROTECTED]
cybersource.com.au> wrote:
> On Wed, 03 Dec 2008 22:02:24 +, Martin P. Hellwig wrote:
> > Warren DeLano wrote:
> >> A bottom line / pragmatic question... hopefully not a FAQ.
>
> >> Why was it necessary to make "as" a reserved keyword?
> >
"Warren DeLano" <[EMAIL PROTECTED]> writes:
> Why was it necessary to make "as" a reserved keyword?
I can't answer for the Python developers as to why they *did* make it
a reserved word.
But I can offer what I believe is a good reason why it *should* be a
reserved word: Because simple is bette
On Dec 3, 5:26 pm, Xah Lee <[EMAIL PROTECTED]> wrote:
> Agreed. My paypal address is “xah @@@ xahlee.org”. (replace the triple
> @ to single one.) Once you paid thru paypal, you can post receit here
> if you want to, or i'll surely acknowledge it here.
>
> Here's what i will do:
>
> I will give a v
On Dec 3, 4:22 pm, "Thomas M. Hermann" <[EMAIL PROTECTED]> wrote:
> On Dec 3, 5:26 pm, Xah Lee <[EMAIL PROTECTED]> wrote:
>
>
>
> > Agreed. My paypal address is “xah @@@ xahlee.org”. (replace the triple
> > @ to single one.) Once you paid thru paypal, you can post receit here
> > if you want to, or
Steven D'Aprano wrote:
On Wed, 03 Dec 2008 22:02:24 +, Martin P. Hellwig wrote:
Warren DeLano wrote:
A bottom line / pragmatic question... hopefully not a FAQ.
Why was it necessary to make "as" a reserved keyword?
Because it can be used at the import statement to let the imported thing
for \
Entry \
in \
sorted \
(
f for f in os.listdir(PatchesDir) if PatchDatePat.search(f) != None
) \
:
Patch = (open,
gzip.GzipFile)[Entry.endswith(".gz")](os.path.join(PatchesDir, Entry), "r")
... read from Patch ...
Patch.close()
#
On Dec 4, 11:13 am, "Hendrik van Rooyen" <[EMAIL PROTECTED]> wrote:
> "Davy" <[EMAIL PROTECTED]> wrote:
> > while(data_queue.full() == False):
>
> This will fill the queue and stop.
> Use while true and if queue not full...
Hi Hendrik,
It works, thank you:)
Davy
>
> - Hendrik
--
http://mail
uggh no!
On Thu, Dec 4, 2008 at 11:07 AM, Lawrence D'Oliveiro
<[EMAIL PROTECTED]> wrote:
> for \
>Entry \
>in \
>sorted \
> (
>f for f in os.listdir(PatchesDir) if PatchDatePat.search(f) != None
> ) \
> :
>Patch = (open,
> gzip.GzipFile)[Entry
> What I want to understand is why this parser change was necessary in
> order to enable new 2.6/3.0 features. Was this change potentially
> avoidable?
Does it really matter? The change occurred and it isn't going to go
back. What you should be asking yourself is whether the affect it had
on your
Xah Lee wrote:
enough babble ...
Good point. Plonk. Guun dun!
--
Lew
--
http://mail.python.org/mailman/listinfo/python-list
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
On behalf of the Python development team and the Python community, I
am happy to announce the release of Python 3.0 final.
Python 3.0 (a.k.a. "Python 3000" or "Py3k") represents a major
milestone in Python's history, and was nearly three years i
On Dec 4, 11:51 am, Barry Warsaw <[EMAIL PROTECTED]> wrote:
> On behalf of the Python development team and the Python community, I
> am happy to announce the release of Python 3.0 final.
Thanks to you and everyone involved for your efforts!
--
http://mail.python.org/mailman/listinfo/python-list
2008/12/4 Barry Warsaw <[EMAIL PROTECTED]>:
> On behalf of the Python development team and the Python community, I am
> happy to announce the release of Python 3.0 final.
>
Congratulations!
I have been learning Python 2.x while paying strict attention to the
3.x [in]compatibility issue. So, I hav
On this page:
http://www.python.org/download/releases/3.0/
The text "This is a proeuction release" should probably read "This is
a production release". It would give a better first impression :)
--
Dotan Cohen
http://what-is-what.com
http://gibberish.co.il
א-ב-ג-ד-ה-ו-ז-ח-ט-י-ך-כ-ל-ם-מ-ן-נ-ס-ע
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
On Dec 3, 2008, at 9:13 PM, Dotan Cohen wrote:
On this page:
http://www.python.org/download/releases/3.0/
The text "This is a proeuction release" should probably read "This is
a production release". It would give a better first impression :)
Fixe
On Thu, Dec 4, 2008 at 11:58 AM, alex23 <[EMAIL PROTECTED]> wrote:
> On Dec 4, 11:51 am, Barry Warsaw <[EMAIL PROTECTED]> wrote:
>> On behalf of the Python development team and the Python community, I
>> am happy to announce the release of Python 3.0 final.
>
> Thanks to you and everyone involved f
Hi all,
I have used Tkinter after() to do loop update GUI in my previous post.
See
http://groups.google.com/group/comp.lang.python/browse_thread/thread/6b616abc236c345b/7df7684d33c969c5#7df7684d33c969c5
And I tried to change after() to time.sleep(), but it seems doesn't
work at all, the Queue se
On Dec 4, 9:08 am, Davy <[EMAIL PROTECTED]> wrote:
> On Dec 4, 11:13 am, "Hendrik van Rooyen" <[EMAIL PROTECTED]> wrote:> "Davy"
> <[EMAIL PROTECTED]> wrote:
> > > while(data_queue.full() == False):
>
> > This will fill the queue and stop.
> > Use while true and if queue not full...
>
> Hi He
On Dec 3, 2008, at 7:51 PM, Barry Warsaw wrote:
On behalf of the Python development team and the Python community, I
am happy to announce the release of Python 3.0 final.
Props to all the folks whose hard work made this possible! You guys
rock!
-- Ed Leafe
--
http://mail.python.org/
If you have access to the AD server that hosts those DNs you can use
python's ldap module to retrieve the smtp attribute for the DN you've just
parsed from the message.
On Wed, Dec 3, 2008 at 2:06 AM, [EMAIL PROTECTED] <
[EMAIL PROTECTED]> wrote:
> Hi all,
> I am trying to use python for ex
> On behalf of the Python development team and the Python community, I
> am happy to announce the release of Python 3.0 final.
>
> Python 3.0 (a.k.a. "Python 3000" or "Py3k") represents a major
> milestone in Python's history, and was nearly three years in the
> making. This is a new version of th
On Wed, Dec 3, 2008 at 7:47 PM, Daniel Fetchinson
<[EMAIL PROTECTED]> wrote:
>> On behalf of the Python development team and the Python community, I
>> am happy to announce the release of Python 3.0 final.
>>
>> Python 3.0 (a.k.a. "Python 3000" or "Py3k") represents a major
>> milestone in Python's
In message <[EMAIL PROTECTED]>, Cameron Laird wrote:
> There's a realm within Pythonia that favors lambdalessness.
Why is that? Was Rossum frightened in his cradle by a lambda when he was a
baby? Are some people afraid of lambdas the way others are afraid of
spiders?
--
http://mail.python.org/mai
>>> On behalf of the Python development team and the Python community, I
>>> am happy to announce the release of Python 3.0 final.
>>>
>>> Python 3.0 (a.k.a. "Python 3000" or "Py3k") represents a major
>>> milestone in Python's history, and was nearly three years in the
>>> making. This is a new v
Sorry to hassle the list with this but I'm getting irregular spam from this
asshole, clearly triggered by comp.lang.python posts being resent to the
python-list. I've contacted Yahoo abuse -and- the list administrators but
its still occurring.
Is anyone able to remove this guy from the list? I've
Hi all,
I have couple of double on python futures .Quires listed below:
* How to write a particular string with required/selected color in a
file with python.net?
Which module I need to use it? How to set color for particular string in
file?
-
fil
"Xah Lee" <[EMAIL PROTECTED]> wrote:
>Chances are, $10 is not enough for me to take the
>trouble of disappearing from the face of this earth.
What a pity.
It would be cheap at the price.
- Hendrik
--
http://mail.python.org/mailman/listinfo/python-list
Hello Everybody
I am trying to import dll with clr.AddReference("TCdll")
I am getting the following error.
Traceback (most recent call last):
File "", line 1, in
clr.AddReference("TCdll")
FileNotFoundException: Unable to find assembly 'TCdll'.
at Python.Runtime.CLRModule.AddReference(St
Hi,
Apologies for the previous email. Some hacker/spammer hacked my
email password, and sent email using it.
Thanks and regards,
Mohit Ranka
--
http://mail.python.org/mailman/listinfo/python-list
Hi, all. I'm getting ready to do some projects in Python, and I've cut my
teeth a little bit, but I've found the "Learning|Programming Python" books
from O'Reilly to be more-or-less useless (to my surprise -- I'm usually an
O'Reilly fan). I really, really like "Python Essential Reference", but
it
On Dec 3, 7:51 pm, Barry Warsaw <[EMAIL PROTECTED]> wrote:
> On behalf of the Python development team and the Python community, I
> am happy to announce the release of Python 3.0 final.
Congratulations! This is a great day for the Python community.
Carl Banks
--
http://mail.python.org/mailman/
On Dec 2, 5:04 pm, Tamas K Papp <[EMAIL PROTECTED]> wrote:
> On Tue, 02 Dec 2008 13:57:35 -0800, Lew wrote:
> > Xah Lee wrote:
> >> If [yo]u would like to learn [the] [E]nglish lang[uage] and writing
> >> insights from me, peruse:
>
> > /Au contraire/, I was suggesting a higher standard for your po
On Dec 3, 4:15 pm, Xah Lee <[EMAIL PROTECTED]> wrote:
> On Dec 3, 8:24 am, Jon Harrop <[EMAIL PROTECTED]> wrote:
>
> > My example demonstrates several of Mathematica's fundamental limitations.
>
> enough babble Jon.
>
> Come flying $5 to my paypal account, and i'll give you real code,
I'll give yo
thankers.append(self)
--
http://mail.python.org/mailman/listinfo/python-list
Hi,
I don't have access to the AD server because only the administrators
here have those rights. Aren't there any MAPI Sender and Recipient object
properties which satisfies my need?
Thank you,
Venu.
On Thu, Dec 4, 2008 at 9:00 AM, BJ Swope <[EMAIL PROTECTED]> wrote:
> If you have access
toby <[EMAIL PROTECTED]> wrote:
>On Dec 3, 4:15 pm, Xah Lee <[EMAIL PROTECTED]> wrote:
>> On Dec 3, 8:24 am, Jon Harrop <[EMAIL PROTECTED]> wrote:
>>
>> > My example demonstrates several of Mathematica's fundamental limitations.
>>
>> enough babble Jon.
>>
>> Come flying $5 to my paypal account, an
On 2008-12-04, Jürgen Exner <[EMAIL PROTECTED]> wrote:
> toby <[EMAIL PROTECTED]> wrote:
>>On Dec 3, 4:15 pm, Xah Lee <[EMAIL PROTECTED]> wrote:
>>> On Dec 3, 8:24 am, Jon Harrop <[EMAIL PROTECTED]> wrote:
>>>
>>> > My example demonstrates several of Mathematica's fundamental limitations.
>>>
>>>
Carl Banks <[EMAIL PROTECTED]> writes:
> On Dec 3, 7:51 pm, Barry Warsaw <[EMAIL PROTECTED]> wrote:
> > On behalf of the Python development team and the Python community,
> > I am happy to announce the release of Python 3.0 final.
>
> Congratulations! This is a great day for the Python community
On Dec 3, 7:44 pm, "Ken D'Ambrosio" <[EMAIL PROTECTED]> wrote:
> Hi, all. I'm getting ready to do some projects in Python, and I've cut my
> teeth a little bit, but I've found the "Learning|Programming Python" books
> from O'Reilly to be more-or-less useless (to my surprise -- I'm usually an
> O'R
I just came across http://www.perl.com/pub/a/2002/05/29/closure.html
and wanted to try the "canonical example of closures" in Python. I
came up with the following, but it fails:
###
#!/usr/bin/env python
def make_counter(start_num):
start = start_num
def counter():
Kaz Kylheku <[EMAIL PROTECTED]> wrote:
>On 2008-12-04, Jürgen Exner <[EMAIL PROTECTED]> wrote:
>> toby <[EMAIL PROTECTED]> wrote:
>>>On Dec 3, 4:15 pm, Xah Lee <[EMAIL PROTECTED]> wrote:
On Dec 3, 8:24 am, Jon Harrop <[EMAIL PROTECTED]> wrote:
> My example demonstrates several of Ma
On Dec 3, 11:18 pm, [EMAIL PROTECTED] wrote:
> I just came acrosshttp://www.perl.com/pub/a/2002/05/29/closure.html
> and wanted to try the "canonical example of closures" in Python. I
> came up with the following, but it fails:
>
> ###
> #!/usr/bin/env python
>
> def make_counte
1+ for "Dive into Python"... get's you started very fast.
After you are thru with DiP book, it's time to keep google (or ur
favourite search engine) handy... search at the ActivePython site in
the cookbooks, PEP's, mailing-list archive... the answer is generally
found within first 4-5 hits. And th
On Wed, Dec 3, 2008 at 9:18 PM, <[EMAIL PROTECTED]> wrote:
> I just came across http://www.perl.com/pub/a/2002/05/29/closure.html
> and wanted to try the "canonical example of closures" in Python. I
> came up with the following, but it fails:
>
> ###
> #!/usr/bin/env python
>
> > Why was it necessary to make "as" a reserved keyword?
>
> I can't answer for the Python developers as to why they *did* make it
> a reserved word.
>
> But I can offer what I believe is a good reason why it *should* be a
> reserved word: Because simple is better than complex, and special
> cas
Hello Everybody
I am able to import the dll and able to access the class of the dll. But
when I am trying to access the methods in the dll its showing error.
#Class1 is the class in dll and next is the function.
Class1.Bin_To_Dec("11")
Traceback (most recent call last):
File "", line 1, in
On Dec 4, 1:52 pm, Lawrence D'Oliveiro <[EMAIL PROTECTED]
central.gen.new_zealand> wrote:
> Why is that? Was Rossum frightened in his cradle by a lambda when he was a
> baby? Are some people afraid of lambdas the way others are afraid of
> spiders?
"Language designers are a superstitious and cowar
"Warren DeLano" <[EMAIL PROTECTED]> writes:
> > But I can offer what I believe is a good reason why it *should* be
> > a reserved word: Because simple is better than complex, and
> > special cases aren't special enough to break the rules.
>
> So you prefer broken code to broken rules, eh? Your cu
I am a faculty member of a cs department. We currently teach C++ in
our intro to programming course. I am teaching this class and it seems
to me that we would be much better served teaching python in the intro
course, C++ for Data structures, as we do now, and Java in object
oriented programming,
On Dec 4, 3:42 pm, "Warren DeLano" <[EMAIL PROTECTED]> wrote:
> So you prefer broken code to broken rules, eh? Your customers must love
> that! This is exactly the kind of ivory-tower thinking I feared might
> be behind the decision (form over function, damn the users to hell,
> etc.)
Really? I
Hi,
Sorry for re-posting but I want to clarify my question again here.
So, we have a multithreaded server application and I want to see the
profile of our code means which function is executed how many times
and time spent in that function dynamically. With dynamic, I mean
without stopping the pr
On approximately 12/3/2008 8:51 AM, came the following characters from
the keyboard of Colin J. Williams:
Martin v. Löwis wrote:
What changes are made to the registry?
For a complete list, see Tools/msi/msi.py in the source tree.
I have scanned the file:
http://svn.python.org/projects/python/
"Davy" <[EMAIL PROTECTED]> wrote:
> I have used Tkinter after() to do loop update GUI in my previous post.
> And I tried to change after() to time.sleep(), but it seems doesn't
> work at all, the Queue send and receive data properly, but the GUI
> didn't even appear?
>
> //-code changed-
"Davy" <[EMAIL PROTECTED]> wrote:
>def gen_board_thread():
>print 'enter here'
>gen_flip = 1
>while(True):
You don't need the brackets: while True: is good enough
>time.sleep(0.3)
>if (data_queue.full() == False):
write: if not data_queue.full(): , and lose the brac
"Cameron Laird" <[EMAIL PROTECTED]> wrote:
> There's a realm within Pythonia that favors lambdalessness.
And who, may I ask, Is the King of this realm?
- Hendrik
--
http://mail.python.org/mailman/listinfo/python-list
101 - 159 of 159 matches
Mail list logo