Hi. I'm having another go at learning Python so I'll probably be
asking a few basic questions. Here is the first one.
a = list(range(10, 21)
b = 9
c = 21
How can I find out if b and c have values less or more than the values
in list a?
Thanks.
--
http://mail.python.org/mailman/listinfo/pytho
On Dec 8, 11:12 am, Tim Chase <[EMAIL PROTECTED]> wrote:
> > a = list(range(10, 21))
>
> > b = 9
>
> > c = 21
>
> > How can I find out if b and c have values less or more than the values
> > in list a?
>
> Sounds like a good use for 2.5's
Wow. Thanks Eric and Peter. Very helpful indeed.
--
http://mail.python.org/mailman/listinfo/python-list
Found it. min and max functions. I thought that this would be
implemented as a list method:
a.min
a.max
I can see that the built in functions make sense.
--
http://mail.python.org/mailman/listinfo/python-list
regards,
João Manuel R. S. Tavares (University of Porto, Portugal,
[EMAIL PROTECTED])
Renato Natal Jorge (University of Porto, Portugal, [EMAIL PROTECTED])
Yongjie Zhang (Carnegie Mellon University, USA,
[EMAIL PROTECTED])
Dinggang Shen (UNC-CH School of Medicine, USA, [EMAIL PROTECTED])
(Symposium
Hi,
is there is a neat way to select items from an iterable based on
predicates stored in another iterable without zipping? I can do
something like this:
import itertools
foo = range(10)
# select even numbers
bar = map(lambda i: i%2, foo)
foobarselected = itertools.ifilterfalse(lambda t: t[0], it
On Dec 11, 2:36 pm, hrishy <[EMAIL PROTECTED]> wrote:
> Hi
>
> Please excuse my OOP but is my understanding correct
>
> urllib.urlretrieve(url_of_zip_file,destination_on_local_filesystem)
>
> is urllib --->Static Class on which the method urlretrieve method is inv
On Dec 11, 3:36 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
wrote:
> On Dec 11, 2:36 pm, hrishy <[EMAIL PROTECTED]> wrote:
>
> > Hi
>
> > Please excuse my OOP but is my understanding correct
>
> > urllib.urlretrieve(url_of_zip_file,destination_o
Hi,
New with python, I've developped a small cmd line script parsing opts
and args with an OptionParser:
in myApp.py:
...blablabla...
parser.add_option(...)
parser.add_option(...)
(options, args) = parser.parse_args()
doCheckParams(parser, options, args)
...blablabla...
I'm trying now to integr
has anyone written a gif creator program purely in python that doesn't
require PIL or tons of other claptrap?
the GIF89a format is pretty straightforward and C is not required to
create these files.
i didn't want to have to upgrade to a newer release of python, install
a huge bunch of stuff or co
shoes on
AIR Jordan 1 (paypal payment)(www.youtetrade.com )
AIR Jordan 2
AIR Jordan 3
AIR Jordan 4
AIR Jordan 5 (paypal payment)(www.youtetrade.com )
AIR Jordan 6 Rings
AIR Jordan 6
AIR Jordan 7
AIR Jordan 8
AIR Jordan 9 (paypal payment)(www.youtetrade.com )
AIR Jordan 10
AIR Jordan 11
AIR Jordan
On Oct 6, 11:45 am, Clay Hobbs <[EMAIL PROTECTED]> wrote:
> I'm using wxPython. My real problem is that everything flashes when it
> moves. I thought the way to fix this was to make a double-buffered
Have you tried looking here? If it doesn't solve your problem, then
mor
I have a large body of Python code which runs on many different (Unix)
machines concurrently. Part of the code lives in one place, but most
of it lives in directories which I find at runtime. I only have one
copy of each Python source file and I think I'm hitting a race
condition where two hosts
> If you package your apps using setup, pyc should be automatically
> generated. Don't know if it can apply to your problem. But surely I'd go
> this way (ie : automating pyc creation one way or another).
Yeah, I don't package up my code, it's all integrated into my build
system,
not an actual del
I think this is my best option for now - I'm going to give it a shot.
Thanks.
--
http://mail.python.org/mailman/listinfo/python-list
Ugggh, I'm not using the exact same version everywhere. Of course,
the mystery to me is that this just started failing recently,
everything has been fine until
last week.
Anyway, thanks for the info.
--
http://mail.python.org/mailman/listinfo/python-list
On Oct 8, 12:07 pm, [EMAIL PROTECTED] wrote:
> Help, I'm addicted to porn. I've been spending a lot of time
> downloading hardcore porn and masturbating to it. It's ruining my
> life. I just found out that one of these sites somehow hacked my card
> and rang up $5K in ch
I can create a unified diff as follows:
udiff = difflib.unified_diff(text1, text2)
Is there an available function somewhere to apply udiff to text1 and
construct text2, like this?
text2 = some_func(text1, udiff)
Thanks for any clues.
--
http://mail.python.org/mailman/listinfo/python-list
On Oct 11, 1:27 am, "Timothy Grant" <[EMAIL PROTECTED]> wrote:
> On Fri, Oct 10, 2008 at 10:16 PM, oyster <[EMAIL PROTECTED]> wrote:
> > os.utime works only against files. so what to do for a directory?
> > thanx
>
> Not sure why you'd say that.
I
how to acess mplayer with slavemode in python?
--
http://mail.python.org/mailman/listinfo/python-list
i am looking for a python implementation of this class, a point X,Y
representation
http://msdn.microsoft.com/en-us/library/system.drawing.point_methods.aspx
is there any library that has this class?
thanks
--
http://mail.python.org/mailman/listinfo/python-list
On Oct 11, 9:30 pm, [EMAIL PROTECTED] wrote:
> Jill> How do I define a 2d list?
>
> Python doesn't truly have 2d lists in the way you might think of 2d arrays
> in C or Fortran. It has 1d lists which can contain any Python object,
> including other lists. If you want
This has got me somewhat stumped, so I'll throw it up here in hopes
that someone has ran into this before. I'm trying to send a MIME
package to Esko Backstage. I'm a bit confused as to how to send this
to the server in a manner that it'll be able to get and de-code the
MIME package in a valid way.
On Oct 13, 6:54 am, Lawrence D'Oliveiro <[EMAIL PROTECTED]
central.gen.new_zealand> wrote:
> In message <[EMAIL PROTECTED]>, Gabriel
>
>
>
> Genellina wrote:
> > En Tue, 07 Oct 2008 13:25:01 -0300, Terry Reedy <[EMAIL PROTECTED]>
> > escribió:
&g
Hi!
I wanna write a file processor in python (Windows XP).
I wanna use pipe, and not parameters.
When I write this:
...
l = []
while 1:
t = sys.stdin.read(1)
if t == '':
break
l.append(t)
t = "".join(l)
...
and use code this:
process.py http://mail.python.org/mailman/listi
On Oct 15, 2:42 am, Lawrence D'Oliveiro <[EMAIL PROTECTED]
central.gen.new_zealand> wrote:
> In message
> <[EMAIL PROTECTED]>,
>
> [EMAIL PROTECTED] wrote:
> > ... but I'm getting a very vague server error message ...
>
> Which is?
In this case
expertise researches to have
invited keynotes during their session and will participate in the
review process of the submitted contributions.
Proposals for Thematic Sessions should be submitted by email to the
conference co-chairs ([EMAIL PROTECTED], [EMAIL PROTECTED])
Publications
The proceedings
Here's a little tutorial that lets you write emacs commands for
processing the current text selection in emacs in your favorite lang.
Elisp Wrapper For Perl Scripts
http://xahlee.org/emacs/elisp_perl_wrapper.html
plain text version follows.
-
Elisp Wrapper For
On Oct 16, 5:22 pm, Miki <[EMAIL PROTECTED]> wrote:
> > Can some one help me in obtaining the set of recipients email
> > addresses from an outlook mail? I tried various options like ...
>
> message["To"]
> message["Cc"]
>
> HTH,
>
Hi all,
Can some one help me in obtaining the set of recipients email
addresses from an outlook mail? I tried various options like
message.Recipient.Address
message.To.Address
message.Receiver.Address etc.. but I could get the senders address
using message.Sender.Address.
Thanks
On Oct 18, 4:31 pm, Dennis Lee Bieber <[EMAIL PROTECTED]> wrote:
> On Sat, 18 Oct 2008 15:00:03 GMT, "Frank L. Thiel" <[EMAIL PROTECTED]>
> declaimed the following in comp.lang.python:
> > Thanks for your reply, Allan. I am not sure what you mean by "the
&g
On Oct 19, 8:35 am, Stef Mientki <[EMAIL PROTECTED]> wrote:
> I (again) wonder what's the perfect way to store, OS-independent,
> filepaths ?
I don't think there is any such thing. What problem are you trying to
solve?
--
http://mail.python.org/mailman/listinfo/python-list
IT'S SIMPLE AND IT'S LEGAL!!!
Who doesn’t want to make tons of money ridiculously easy? Read this
letter follow the instructions, and like me you’ll never have to worry
about
money again.
I was browsing through news groups just like you are right now and
Came across a article similar to this sa
I have some code which runs on a number of different machines, however
I see problems on one particular Solaris box. When I call
Popen.wait(), the following exception is raised:
. . .
File "/basis/users/matt/Python-2.4.4/Lib/subprocess.py", line 558, in
__init__
errread, errwrite)
File "/ba
Hi!
When I try to open the 2.5 Python help, I got error message:
"A fájl (mk:@MSITStore:c:\Python25\Doc\Python25.chm) nem nyitható meg."
The english translation is this:
"Cannot open the file (mk:@MSITStore:c:\Python25\Doc\Python25.chm)"
I not experienced this problem in the Python 2.4 the
Claudio Grondi wrote:
>
> Yves Lange wrote:
>> Hello,
>> i'm searching a method to take a snapshot and save it in a jpg, bmp or
>> gif file. I tried with win32api and win32con but it save the snapshot to
>> the clipboard, so i tried to redirect this in a file but i have some
>> problems whil
Frank Niemeyer wrote:
>
>> However incrementing a non-existing key throws an exception.
>
> Right. And that's exactly what I would expect, according to the
> "principle of least surprise" Python tries to obey. There's simply no
> way to increment a non-existent value - not without performing s
John J. Lee wrote:
>
> [EMAIL PROTECTED] writes:
>
>> > Untestetd, but I'm pretty sure something like this will do.
>> > If you need more control, and on windows, try pywinauto
>>
>> I do need it to run on Windows. I'll check out pyw
Hi,,
How can we access the time of message received ( UTC time) of an
outlook mail in python? As far as I know the time which it displays in
the mail is not the exact time... this UTC time will be present in
MIME Header of an outlook mail.
Any Help is appreciated..and thanks in advance,,
Ven
On Oct 23, 4:01 pm, Tzury Bar Yochay <[EMAIL PROTECTED]> wrote:
> On Oct 23, 12:04 pm, "[EMAIL PROTECTED]"
>
> <[EMAIL PROTECTED]> wrote:
> > Hi,,
> > How can we access the time of message received ( UTC time) of an
> > outlook mail in pytho
Hello everyone,
I would like to know what isn't good in my script.
#!/usr/bin/python
# -*- coding: iso-8859-15 -*-
from time import strftime
import datetime
t = input(datetime.date)
global t
print t.strftime("Day %w of the week a %A . Day %d of the month (%B).
")
print t.strftime("Day %j of the yea
On Oct 23, 3:21 pm, bill <[EMAIL PROTECTED]> wrote:
> All,
>
> I am trying to access Excel from Python. Many of the examples started
> with:
>
> import win32com
>
> blah, blah
>
> I try that from my Python shell and it fails. What am I mis
Hi
i have i have a class that makes temp folders to do work in. it keeps
track of them, so that in the __del__() it can clean them up. ideally
if the user of the module still has objects left at the end of their
program, they should be automatically cleaned up. in my destructor i
had a call to shu
It seems to me that deleting local instances before imported modules
would solve the problem. Is it not possible for the interpreter to get
this right? Or are there cases where this would break stuff.
It seems rather unpythonic for the __del__() method to become
unpredictable at exit.
--
http://ma
This solve the problem:
http://techrepublic.com.com/5208-11183-0.html?forumID=89&threadID=191474
regsvr32 %systemroot%\system32\hhctrl.ocx
regsvr32 %systemroot%\system32\itss.dll
[EMAIL PROTECTED]:
Hi!
When I try to open the 2.5 Python help, I got error message:
"A fájl (mk:@MS
27, 2008 at 5:46 PM, Gabriel Genellina
<[EMAIL PROTECTED]> wrote:
+1 This thread is stupid and pointless.
Even for a so-called cold startup 0.5s is fast enough!
I don't see the need to be rude.
And I DO care for Python startup time and memory footprint, and others do
too. Even if it
On Oct 21, 5:19 pm, Rolf Wester <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I have the problem that with long running Python scripts (many loops)
> memory consumption increases until the script crashes. I used the
> following small script to understand what might happen:
>
A
HI!
Did you tried the ERIC python IDE?
Rew
pihentagy írta:
> Hi!
>
> I am looking for a python IDE which can remove my unused imports, and
> can do basic refactoring under windows.
>
> Can somebody advice me such an IDE?
>
> I have played with eclipse and netbeans, but I cannot find such a
> func
x27;11'],
[1, 3, 'email', '[EMAIL PROTECTED]'],
[2, 1, 'address','something stree'],
[2, 3, 'email','[EMAIL PROTECTED]']]
the dict can be:
dict={1:['something street
http://www.officeformac.com/ProductForums/WindowsMediaPlayerMac/275 -
kredit ohne schufa ohne kredit ohne schufa ohne vorkosten
http://www.officeformac.com/ProductForums/WindowsMediaPlayerMac/275 -
kredit ohne schufa ohne kredit ohne schufa ohne vorkosten
http://www.officeformac.com/ProductForums/W
On Oct 30, 11:53 am, gaurav kashyap <[EMAIL PROTECTED]> wrote:
> HI,
> I am getting the following error:
>
> konsole: cannot connect to X server
>
> do i need to install the related files.
Do you have an x-server running? I assume so, because you have a
terminal window ope
Shah Rukh kicks off Temptations Reloaded with style
http://dreamstoday.com/
--
http://mail.python.org/mailman/listinfo/python-list
Hi
I have
access.Fields("Time").value=t
I would like t to be a string reprsenting a data. How can I do this?
--
http://mail.python.org/mailman/listinfo/python-list
http://www.sportstips8.blogspot.com/
--
http://mail.python.org/mailman/listinfo/python-list
On Nov 3, 11:48 am, [EMAIL PROTECTED] wrote:
> I am using Python 2.6 on Mac OS 10.3.9.
> I have been trying to use:
> image = urllib.URLopener()
> image.retrieve(url, filename)
> to download images from websites. I am able to do so, and end up with
> the appropriate file. Howe
On Nov 4, 12:06 am, TP <[EMAIL PROTECTED]> wrote:
> Hi everybody,
>
> The following code does not redirect the output of os.system("ls") in a
> file:
>
> import sys, os
> saveout = sys.stdout
> fd = open( 'toto', 'w' )
> sys.st
Sadly, there is no way to increase the log verbosity.
On Oct 17, 2:42 am, Lawrence D'Oliveiro <[EMAIL PROTECTED]
central.gen.new_zealand> wrote:
> In message
> <[EMAIL PROTECTED]>,
>
>
>
> [EMAIL PROTECTED] wrote:
> > On Oct 15, 2:42
On Nov 5, 6:47 am, Kurda Yon <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I try to "build" and "install" pysqlite? After I type "python setup.py
> build" I get a lot of error messages? The first error is "src/
> connection.h:33:21: error: sqlite
On Nov 5, 12:29 pm, Dennis Lee Bieber <[EMAIL PROTECTED]> wrote:
> On Tue, 04 Nov 2008 21:58:17 -0500, [EMAIL PROTECTED] declaimed
> the following in comp.lang.python:
>
> > Python depends upon Sqlite... which is weird... but it is what I
> > discovered...
>
>
On Nov 5, 8:37 pm, Mat <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I'm trying to use raw sockets in python for a dhcp client. I write this code :
>
> soc = socket.socket(socket.PF_PACKET, socket.SOCK_RAW)
> soc.bind(("eth0",0x0800))
> data = soc.recv(1024)
> p
On Nov 5, 5:12 pm, Michele Petrazzo <[EMAIL PROTECTED]>
wrote:
> Hi all,
> I believe that this is a *nix question, but since I'm developing in
> python, I'm here.
>
> I have a code that execute into a "Popen" a command (ssh). I need that,
> if the pyth
On Nov 5, 9:22 pm, "Shawn Milochik" <[EMAIL PROTECTED]> wrote:
> This is all useful and interesting stuff, but I don't think any of it
> addresses the original poster's problem, which is that he has no root
> access to a Linux or Unix box, and wants to get pysqli
On Nov 5, 10:07 pm, "Shawn Milochik" <[EMAIL PROTECTED]> wrote:
> On Wed, Nov 5, 2008 at 11:58 AM, [EMAIL PROTECTED]
>
>
>
> <[EMAIL PROTECTED]> wrote:
> > On Nov 5, 9:22 pm, "Shawn Milochik" <[EMAIL PROTECTED]> wrote:
> >> T
Hi,
I cannot get the following code to work
import win32com.client
import time
engine = win32com.client.Dispatch("DAO.DBEngine.36")
db=engine.OpenDatabase(r"testdate2.mdb")
access = db.OpenRecordset("select * from test")
access.AddNew()
access.Fields("test").value=time.strptime('10:00AM', '%I:%M
On Nov 6, 4:27 pm, [EMAIL PROTECTED] wrote:
> Hi,
>
> I am using a small python file as an input file (defining constants,
> parameters, input data, ...) for a python application.
> The input file is simply read by an exec statement in a specific
> dictionary, and then the applic
On Nov 6, 3:09 pm, Lawrence D'Oliveiro <[EMAIL PROTECTED]
central.gen.new_zealand> wrote:
> In message <[EMAIL PROTECTED]>, Michele Petrazzo wrote:
>
> > Lawrence D'Oliveiro wrote:
>
> >> See the prctl(2) man page.
>
> > Just seen. It c
Hi all,
I'm trying to get python to work with cgi for a small intranet site,
however even a simply "hello world test isn't working". Here is the
test file:
#!/usr/bin/python
# -*- coding: UTF-8 -*-
# enable debugging
import cgitb; cgitb.enable()
print "Content-Type: text/plain;charset=utf-8"
pr
On Nov 6, 9:57 pm, mrstevegross <[EMAIL PROTECTED]> wrote:
> I ran into a weird behavior with lexical scope in Python. I'm hoping
> someone on this forum can explain it to me.
>
> Here's the situation: I have an Outer class. In the Outer class, I
> define a nes
On Nov 7, 9:09 am, Lawrence D'Oliveiro <[EMAIL PROTECTED]
central.gen.new_zealand> wrote:
> In message <[EMAIL PROTECTED]>, Lawrence D'Oliveiro wrote:
>
> > In message <[EMAIL PROTECTED]>, Thomas
> > Christensen wrote:
>
> >>
SELL OUT land area with 12,681 ha, located at the entrance to the town
of Pazardzhik(Bulgaria) in city limits and has 106 meters
individual . "Dimcho Debelyanov (Miryansko road). A plot in the new
economic zone of the city - in the vicinity has built industrial
enterprises, shops and warehouses. U
SELL OUT land area with 12,681 ha, located at the entrance to the town
of Pazardzhik(Bulgaria) in city limits and has 106 meters
individual . "Dimcho Debelyanov (Miryansko road). A plot in the new
economic zone of the city - in the vicinity has built industrial
enterprises, shops and warehouses. U
I am trying to put up a queue (through a logging thread) so that all
worker threads can ask it to log messages. However, the problem I am
facing is that, well, the logging thread itself is running forever.
It does not know when it should exit. Any suggestion? None of the
worker threads knows for
On Nov 10, 1:16 pm, Marc 'BlackJack' Rintsch <[EMAIL PROTECTED]> wrote:
> On Mon, 10 Nov 2008 03:11:06 -0800, [EMAIL PROTECTED] wrote:
> > 1. How can I pass a file-like object into the C part? The PyArg_*
> > functions can convert objects to all sort of
On Nov 10, 2:23 pm, Floris Bruynooghe <[EMAIL PROTECTED]>
wrote:
> Sorry, I probably should have mentioned you want to cast the object to
> PyFileObject and then use the PyFile_AsFile() function to get the
> FILE* handle.
Yes, I figured that out by now. Sadly this doesn'
Hello,
I'm trying to write a Python extension module in C for the first time.
I have two questions:
1. How can I pass a file-like object into the C part? The PyArg_*
functions can convert objects to all sort of types, but not FILE*.
2. How can I preserve information needed in the C part between
On Nov 10, 3:27 pm, "timw.google" <[EMAIL PROTECTED]> wrote:
> On Nov 10, 2:57 pm, Robert Singer <[EMAIL PROTECTED]> wrote:
>
>
>
> > On Mon, 10 Nov 2008 20:56:46 +0100, Robert Singer <[EMAIL PROTECTED]>
> > wrote:
>
> > >On M
Hi all,
On a (sun) webserver that I use, there is python 2.5.1 installed. I'd
like to use sqlite3 with this, however sqlite3 is not installed on the
webserver. If I were able to compile sqlite using a sun machine (I
normally use linux machines) and place this in my lunix home account
would I be ab
Thank you guys, indeed, calling join() for each thread actually solved
the problem.
I misunderstood it and call join() right after start() so it didn't
work the way I wanted.
for i in range(args.threads):
children[i].join()
--
http://mail.python.org/mailman/listinfo/python-list
On Nov 10, 4:49 pm, RichardT <[EMAIL PROTECTED]> wrote:
> On Mon, 10 Nov 2008 10:40:28 -0800 (PST), "timw.google"
>
> <[EMAIL PROTECTED]> wrote:
> >Is there a way to disable ctrl-P (print window) in IDLE? I'm editing
> >some python code in IDLE and
SELL OUT land area with 12,681 ha, located at the entrance to the town
of Pazardzhik(Bulgaria) in city limits and has 106 meters
individual . "Dimcho Debelyanov (Miryansko road). A plot in the new
economic zone of the city - in the vicinity has built industrial
enterprises, shops and warehouses. U
clear if I can install a
copy of sqlite on my local machine and get that to work with python on
the webserver? Possibly via pysqlite?
On Nov 12, 8:46 am, Thorsten Kampe <[EMAIL PROTECTED]> wrote:
> * (Tue, 11 Nov 2008 17:58:15 -0500)
>
> > > > Can you ask them if sqlite3
credit kredite oesterreich ratenkredite online kredit ohne schufa in
blitzkredite
+
+
+
+
+++ GUENSTIGE KREDITE ONLINE +++ KREDITE IM INTERNET OHNE SCHUFA +++
+
+
http://www.usd.edu/phys/courses/astronomy/bord/messages/19924.html
http://www.usd.edu/phys/courses/astronomy/bord/messages/19924.html
h
On Nov 12, 10:14 am, Thorsten Kampe <[EMAIL PROTECTED]> wrote:
> * [EMAIL PROTECTED] (Wed, 12 Nov 2008 01:27:01 -0800 (PST))
>
> > Python (2.5.1) was compiled from source on the webserver that I use,
> > without an associated sqlite present on the machine, so trying &
On Nov 13, 2:25 pm, Alan Baljeu <[EMAIL PROTECTED]> wrote:
> I'm new to Python, and just downloaded Py2.6. I also want to use Nose. So I
> downloaded the latest sources, but it's not at all clear what's the best way
> to put this stuff into the Python
Hello, I am looking for a utility that will generate any number of
pings per second, and allow me to check how many of the pings in the
last X seconds have been dropped, while it is still running.
The reason I can't use the built-in Unix ping is that 1) it does not
provide overall feedback while i
On Nov 14, 4:08 pm, "Eric S. Johansson" <[EMAIL PROTECTED]> wrote:
> Almar Klein wrote:
> > Hi Eric,
>
> > First of all, I like your initiative.
>
> there's nothing like self interest to drive one's initiative. :-) 14 years
> with
> spe
On Nov 14, 5:27 pm, "Eric S. Johansson" <[EMAIL PROTECTED]> wrote:
> [EMAIL PROTECTED] wrote:
> > On Nov 14, 4:08 pm, "Eric S. Johansson" <[EMAIL PROTECTED]> wrote:
> >> Almar Klein wrote:
> >>> Hi Eric,
> >>> First of all
On Nov 14, 9:01 pm, "Eric S. Johansson" <[EMAIL PROTECTED]> wrote:
> [EMAIL PROTECTED] wrote:
> > I don't understand. If you don't want to terminate the "if", why do
> > you hit backspace? What is it that you would like to have happen?
>
&g
http://bux.to/?r=mr-sk8er
At Bux.to, you get paid to click on ads and visit websites. The
process is easy! You simply click a link and view a website for 30
seconds to earn money. You can earn even more by Referring Friends.
You'll get paid $0.01 for each website you personally view and $0.01
for
Hi,
I am trying to understand the following line:
# a is an integer array
max([(sum(a[j:i]), (j,i))
Can you please tell me what that means,
I think sum(a[j:i] means find the some from a[j] to a[i]
But what is the meaning of the part (j,i)?
--
http://mail.python.org/mailman/listinfo/python-list
Hi,
Has anyone try to use PIL in a windows domain environment? I am having
a permission issue. If I am a domain user, even I have the permission
to write a folder, when I tried to do simple things like Image.open
("foo.tif").save("bar.tif"), i am getting exception IOError ("0",
"Error"). I tried to
On Nov 19, 1:50 am, gavino <[EMAIL PROTECTED]> wrote:
> what is nicer about each?
Yes.
--
http://mail.python.org/mailman/listinfo/python-list
On Nov 12, 2:06 pm, "[EMAIL PROTECTED]"
<[EMAIL PROTECTED]> wrote:
> credit kredite oesterreich ratenkredite online kredit ohne schufa in
> blitzkredite
>
> +
> +
> +
> +
> +++ GUENSTIGE KREDITE ONLINE +++ KREDITE IM INTERNET OHNE SCHUFA +++
> +
>
h
Hello,
I'm going through the SOAP Web Services portion of Mark Pilgrim's
tutorial and I'm getting this error when trying to build:
python setup.py build
Traceback (most recent call last):
File "setup.py", line 8, in
from SOAPpy.version import __version__
File "/Users/username/Desktop/SOA
I have no problem with the python builtin open which we use dayly.
Thanks for the hints.
Best,
V
On Nov 19, 5:56 pm, "Gabriel Genellina" <[EMAIL PROTECTED]>
wrote:
> En Wed, 19 Nov 2008 13:43:07 -0200, [EMAIL PROTECTED]
> <[EMAIL PROTECTED]> escribió:
>
>
On 12 mai, 18:10, Matthew Wilson <[EMAIL PROTECTED]> wrote:
> I have been experimenting with metaclasses lately. It seems possible to
> define a metaclass by either subclassing type and then either redefining
> __init__ or __new__.
>
> Here's the signature for __init__
On 12 mai, 09:00, "Gabriel Genellina" <[EMAIL PROTECTED]> wrote:
> En Sat, 10 May 2008 22:12:37 -0300, globalrev <[EMAIL PROTECTED]> escribió:
>
>
>
> >http://reddit.com/r/programming/info/18td4/comments
>
> > claims people take a lot of time to
It's probably not news to anyone here that Python 3 gives us
access to the unicode codespace for Python names, not just
string literals, meaning our functions and classes, lists and
dictionaries, might go outside Latin-1 for their source code
representation.
I have an example in my blog:
http://m
Hello,
My question concerns asynchat in particular. With the following half-
pseudo code in mind:
class Example(asynchat.async_chat):
def readable(self):
if foo:
self.push_with_producer(ProducerA())
return asynchat.async_chat.readable(self)
Now
> In a pure world, the only writing that is done would be within the
> handle_send() callbacks within the select loop. Then again, in a
> perfect world, calling readable() and writable() would have no strange
> side affects (as your example below has), and all push*() calls would
> be made within
4201 - 4300 of 4916 matches
Mail list logo