> The parser is failing on this line:
>
> Heinrich Kèufner, Norbert Nedopil, Heinz Schèoch (Hrsg.). mrcb245-c>
If it is literally this line, it's no surprise: there must not be a line
break between the slash and the closing element name.
However, since you are getting the error in a different co
Urizev wrote:
> Hi everyone
>
> I have developed the singleton implementation. However I have found a
> strange behaviour when using from different files. The code is
> attached.
>
> Executing main
> New singleton:
> <__main__.Singleton instance at 0x2b98be474a70>
> New singleton:
>
> I do n
Hi,
I am trying to parse an xml file using the minidom parser.
from xml.dom import minidom
xmlfilename = "sample.xml"
xmldoc = minidom.parse(xmlfilename)
The parser is failing on this line:
Heinrich Kèufner, Norbert Nedopil, Heinz Schèoch (Hrsg.).
This is the error message I get:
Traceback (
norseman <[EMAIL PROTECTED]> wrote:
>
>Problem: (sos=same old s...) Microsoft insists the world work it's way
>even when the Microsoft way was proven wrong decades ago. In this case
>it's (still) 'cooking' the writes even with 'rwb' and O_RDWR|O_BINARY in
>(proper respective) use.
No, it does
"Brandon" <[EMAIL PROTECTED]> wrote:
>
>What I'm trying to do is essentially force a user to fill in required items
>in a form, which will be saved to a database. How can I get it so that once
>the user clicks "OK" on the dialog box, it transfers control back to the
>form, and not save the empt
-On [20080630 23:51], Ali Servet Dönmez ([EMAIL PROTECTED]) wrote:
>This could be an extension, a plugin, an Emacs mode, a new editor or
>even a brand new huge all-fancy IDE, I don't care, but what am I
>missing here?
Vim's omnicomplete (CTRL-X CTRL-O).
See :help omnifunc within vim.
--
Jeroen
Ali Servet Dönmez wrote:
I tried code come completion options in Emacs for Python, but none of
them was satisfactory to me. I'd be glad to hear how did your friend
get it work though.
Perhaps it would help to say what ways the completion in Emacs was not
satisfactory?
FWIW, it should be pos
Hello,
> I would like to write a python script which could take a movie file name
> (avi, mov, mpg) along with a start and stop time as parameters, and
> return to me a new movie file just containing that section of the
> original which I'm interested in. Is there a Python library which could
> a
On Jul 3, 9:20 pm, "Dieter Maurer" <[EMAIL PROTECTED]> wrote:
> The apparent reason is that the free variables in
> nested generator definitions are not bound (to a value) at invocation
> time but only at access time.
That's what it is supposed to do. Welcome to a dynamic
language.
Raymond
--
I met the following surprising behaviour
>>> def gen0():
... for i in range(3):
... def gen1():
... yield i
... yield i, gen1()
...
>>> for i,g in gen0(): print i, g.next()
...
0 0
1 1
2 2
>>> for i,g in list(gen0()): print i, g.next()
...
0 2
1 2
2 2
If this is not a bug, it is
Hello,
> I can't seem to get python to run my scripts using the command: python
> .py
>
> If I type python the interpreter runs as I sorted out the Path property,
>
> I'm afraid I don't know much about this kind of thing as I'm a science
> student who needs some Python not a programmer!
Can you be
On Jul 3, 3:59 pm, Ron Garret <[EMAIL PROTECTED]> wrote:
> I'm writing a little HTTP server and need to parse request content that
> is mime-encoded. All the MIME routines in the Python standard library
> seem to have been subsumed into the email package, which makes this
> operation a little awkw
Try:
import re
import urllib2
url = 'http://www.google.com/search?num=20&hl=en&q=ipod&btnG=Search'
user_agent = 'Mozilla/4.0 (compatible; MSIE 5.5; Windows NT)'
headers = {'User-Agent' : user_agent}
req = urllib2.Request(url, None, headers)
file_source=open("google_source.txt", 'w')
file_source.wr
On Jul 3, 9:09�pm, George Sakkis <[EMAIL PROTECTED]> wrote:
> On Jul 3, 7:51 pm, Mensanator <[EMAIL PROTECTED]> wrote:
>
> > On Jul 3, 6:24 pm, George Sakkis <[EMAIL PROTECTED]> wrote:
>
> > > Taking into account 2.6 too (we're not talking about only 3.0 here),
> > > probably not much less than tho
On Jul 3, 8:10�pm, casevh <[EMAIL PROTECTED]> wrote:
> On Jul 3, 6:54�am, Mensanator <[EMAIL PROTECTED]> wrote:
>
>
>
> > Well, it will be great at some point in the future
> > when Python 2.6/3.0 have actually been released and
> > third party extensions such as gmpy have caught up.
>
> > Until th
Walter Dörwald wrote:
> Of course the node constructor could append the
> node to the currently active element. However there
> might be cases where you want to do something else
> with the newly created node, so always appending the
> node is IMHO the wrong thing.
Unless you're using it as a temp
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] (Cameron Laird)
wrote:
> In article <[EMAIL PROTECTED]>,
> Matthew Fitzgibbons <[EMAIL PROTECTED]> wrote:
> >Alexnb wrote:
> >> Okay this is a simple question I just don't know how. If I have a list,
> >> say:
> >>
> >> funList = []
> >>
> >>
Hello ,
I have written a code to get the page source of the google search
page .. this is working for other urls. I have this problem with
import re
from urllib2 import urlopen
string='http://www.google.com/search?num=20&hl=en&q=ipod&btnG=Search'
file_source=file("google_source.txt",'w'
On Jul 3, 7:51 pm, Mensanator <[EMAIL PROTECTED]> wrote:
> On Jul 3, 6:24 pm, George Sakkis <[EMAIL PROTECTED]> wrote:
>
> > Taking into account 2.6 too (we're not talking about only 3.0 here),
> > probably not much less than those who even know what is gmpy, let
> > alone dismiss a beta Python re
In article <[EMAIL PROTECTED]>,
Matthew Fitzgibbons <[EMAIL PROTECTED]> wrote:
>Alexnb wrote:
>> Okay this is a simple question I just don't know how. If I have a list, say:
>>
>> funList = []
>>
>> and after a while something possible should have been appended to it, but
>> wasn't. How can I te
Hi,
I can't seem to get python to run my scripts using the command: python
.py
If I type python the interpreter runs as I sorted out the Path property,
I'm afraid I don't know much about this kind of thing as I'm a science
student who needs some Python not a programmer!
Thanks in a
Nagu <[EMAIL PROTECTED]> writes:
> I made a small recommendation engine for our company using python,
> django, and mySQL. My supervisor and the senior management are
> worried about the copyright and licensing issues.
It's good that they're raising these concerns and making sure.
> They want to
On Jul 3, 8:33 pm, Nagu <[EMAIL PROTECTED]> wrote:
> ...
> How do I go about addressing the copyright and licensing issues? (I do
> not know if licensing is the right word here).
>
> Please advice.
>
> Thank you,
> Nagu
I suggest you take the advice of random idiots on a python mailing
list.
--
ht
I found a solution:
http://groups.google.com/group/comp.lang.python/browse_thread/thread/aea64448eaca4778/250e908652e2646d
If I use datetime.now(tz=tz) instead of datetime(Y,M,D,h,m,s,
tzinfo=tz), it works.
On Jul 3, 4:18 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote:
> Nah, it's got to be
On Jul 3, 6:58 pm, Urizev <[EMAIL PROTECTED]> wrote:
> Hi everyone
>
> I have developed the singleton implementation. However I have found a
> strange behaviour when using from different files. The code is
> attached.
>
> Executing main
> new MySet object
> No singleton instance
> New singleton:
>
On Jul 3, 6:54 am, Mensanator <[EMAIL PROTECTED]> wrote:
>
> Well, it will be great at some point in the future
> when Python 2.6/3.0 have actually been released and
> third party extensions such as gmpy have caught up.
>
> Until then, such solutions are worthless, i.e., of
> no value.
gmpy is sup
norseman wrote:
I know I saw the answer recently, as in since February '08, but I can't
re-find it. :( I tried the mail archives and such and my own
collections but the piece I saw still eludes me.
Problem: (sos=same old s...) Microsoft insists the world work it's way
even when the Mi
Hi,
I made a small recommendation engine for our company using python,
django, and mySQL. My supervisor and the senior management are worried
about the copyright and licensing issues. They want to find out the
details on how to go about start using it, like quoting python/django/
mySQL specificall
I know I saw the answer recently, as in since February '08, but I can't
re-find it. :( I tried the mail archives and such and my own
collections but the piece I saw still eludes me.
Problem: (sos=same old s...) Microsoft insists the world work it's way
even when the Microsoft way was p
On Jul 3, 6:24 pm, George Sakkis <[EMAIL PROTECTED]> wrote:
> On Jul 3, 5:49 pm, Mensanator <[EMAIL PROTECTED]> wrote:
>
> > On Jul 3, 2:52 pm, Terry Reedy <[EMAIL PROTECTED]> wrote:
>
> > > Worthless to you, worthwhile to me.
>
> > The OP's opinion is the only one that matters.
>
> I bet the OP
On Jul 3, 5:49 pm, Mensanator <[EMAIL PROTECTED]> wrote:
> On Jul 3, 2:52 pm, Terry Reedy <[EMAIL PROTECTED]> wrote:
>
> > Worthless to you, worthwhile to me.
>
> The OP's opinion is the only one that matters.
I bet the OP doesn't know (or care) what gmpy is.
> What do you suppose
> is the per
Nah, it's got to be something more than that. A bunch of them are
screwed up. It's showing America/Saskatchewan as UTC-06:59.
I think there's something wrong with my code. I've put it up at a
pastebin so that it's easier to read.
http://pastebin.ca/1061776
On Jul 2, 11:22 am, Mensanator <[EMA
Urizev wrote:
Hi everyone
I have developed the singleton implementation. However I have found a
strange behaviour when using from different files. The code is
attached.
Executing main
new MySet object
No singleton instance
New singleton:
<__main__.Singleton instance at 0x2b98be474a70>
new MySet
Hi everyone
I have developed the singleton implementation. However I have found a
strange behaviour when using from different files. The code is
attached.
Executing main
new MySet object
No singleton instance
New singleton:
<__main__.Singleton instance at 0x2b98be474a70>
new MySet object
There is
If you guys can get your head out of IDE land, you'll find iPython
does a fantastic job at introspection and Auto-completion, you can
launch shell commands and editors and when done saving be back in the
iPython shell, save memory/variable space to disk so you can come back
the next day and continu
I am trying to move from python 2.4 to python 2.5.2. After compiling the
python 2.5.2, I found it is throwing "ImportError: No module named _md5".
I found this topic on the mailing list, but no solution to fix it.
Can someone help me out. It will be highly appreciated.
Regards
Alok
--
http://mai
On Jul 3, 2:52 pm, Terry Reedy <[EMAIL PROTECTED]> wrote:
> Mensanator wrote:
> > On Jul 3, 2:13�am, Bruno Desthuilliers > [EMAIL PROTECTED]> wrote:
> >> Terry Reedy a �crit :
> >>> This has been added to itertools at least for 2.6/3.0
> >> Great !
>
> > Well, it will be great at some point in the
Jonas Galvez wrote:
Walter Dörwald wrote:
XIST has been using with blocks since version 3.0.
[...]
with xsc.Frag() as node:
+xml.XML()
+html.DocTypeXHTML10transitional()
with html.html():
[...]
Sweet! I don't like having to use the unary operator tho, I wanted
something as simple as poss
Stefan Behnel wrote:
Hi,
Walter Dörwald wrote:
XIST has been using with blocks since version 3.0.
Take a look at:
http://www.livinglogic.de/Python/xist/Examples.html
from __future__ import with_statement
from ll.xist import xsc
from ll.xist.ns import html, xml, meta
with xsc.Frag() as node
Alexnb wrote:
Okay this is a simple question I just don't know how. If I have a list, say:
funList = []
and after a while something possible should have been appended to it, but
wasn't. How can I test if that list is empty.
if not funList:
do_something()
-Matt
--
http://mail.python.o
I'm writing a little HTTP server and need to parse request content that
is mime-encoded. All the MIME routines in the Python standard library
seem to have been subsumed into the email package, which makes this
operation a little awkward. It seems I have to do the following:
1. Extract the co
Okay this is a simple question I just don't know how. If I have a list, say:
funList = []
and after a while something possible should have been appended to it, but
wasn't. How can I test if that list is empty.
--
View this message in context:
http://www.nabble.com/Testing-for-an-empty-list-tp1
On Thu, Jul 3, 2008 at 4:16 PM, varun chadha <[EMAIL PROTECTED]> wrote:
> i am developing an application using Tkinter where 'next' button
> takes to another window and removes the first one from screen and
> 'back' button bring me back to previous window and so on.
> though i am able to move from
Hi,
Is there a way to perform a recursive file search using wildcards in python
3.0b1?
For example, if I have:
C:\foo\abc*xyz.*
I want all files in C:\foo and all subfolders (recursively) of C:\foo that
match the wildcard abc*xyz.* to be matched. In the end, I want a list of
files that matched
Stefan Behnel wrote:
> Interesting. Is the "+" actually required? Are there other operators
> that make sense here? I do not see what "~" or "-" could mean.
> Or is it just a technical constraint?
> I'm asking because I consider adding such a syntax to lxml as
> a separate module. And I'd prefer co
On Jul 3, 10:20 pm, "Méta-MCI \(MVP\)"
<[EMAIL PROTECTED]> wrote:
> Hi!
>
> Which OS?  On Vista, you MUST reconfig the "aperçu images et
> télécopies" (in french ; sorry, I don't know the english translation).
>
> @-salutations
>
> Michel Claveau
thumbnail images and faxes? and how do i
On Jul 3, 10:20 pm, "Méta-MCI \(MVP\)"
<[EMAIL PROTECTED]> wrote:
> Hi!
>
> Which OS?  On Vista, you MUST reconfig the "aperçu images et
> télécopies" (in french ; sorry, I don't know the english translation).
>
> @-salutations
>
> Michel Claveau
VISTA.
i will try google translate :)
--
h
Hi!
Which OS? On Vista, you MUST reconfig the "aperçu images et
télécopies" (in french ; sorry, I don't know the english translation).
@-salutations
Michel Claveau
--
http://mail.python.org/mailman/listinfo/python-list
>From: "Fuzzyman" <[EMAIL PROTECTED]>
>To: python-list@python.org
>Sent: Thursday, July 3, 2008 12:41:11 PM GMT -06:00 US/Canada Central
>Subject: Re: Freesoftware for auto/intelligent code completing in Python
>
>On Jul 2, 9:33 am, Ali Servet Dönmez <[EMAIL PROTECTED]> wrote:
> On Jul 1, 12:15 am
On Jul 2, 10:39 pm, Ivan Ven Osdel <[EMAIL PROTECTED]> wrote:
> Not really, I have just worked with them more.
>
> - Original Message -
> From: "Ali Servet Dönmez" <[EMAIL PROTECTED]>
> To: [EMAIL PROTECTED]
> Sent: Wednesday, July 2, 2008 1:15:04 PM GMT -06:00 US/Canada Central
> Subject:
On Jul 3, 7:42 pm, Fuzzyman <[EMAIL PROTECTED]> wrote:
> On Jun 30, 11:25 pm, Ali Servet Dönmez <[EMAIL PROTECTED]> wrote:
>
>
>
> > On Jul 1, 12:15 am, Fuzzyman <[EMAIL PROTECTED]> wrote:
>
> > > On Jun 30, 10:46 pm, Ali Servet Dönmez <[EMAIL PROTECTED]> wrote:
>
> > > > I don't want to be so mean
Tim Cook wrote:
On Thu, 2008-07-03 at 14:20 -0500, Larry Bates wrote:
I suspect there is some "misunderstanding" here. Why exactly do you think you
need to have your instances named with [] characters in them?
I often misunderstand. :-)
But, I am implementing specifications in Python tha
On Jul 3, 7:38 pm, Fuzzyman <[EMAIL PROTECTED]> wrote:
> On Jul 2, 9:33 am, Ali Servet Dönmez <[EMAIL PROTECTED]> wrote:
>
>
>
> > On Jul 1, 12:15 am, Fuzzyman <[EMAIL PROTECTED]> wrote:
>
> > > On Jun 30, 10:46 pm, Ali Servet Dönmez <[EMAIL PROTECTED]> wrote:
>
> > > > I don't want to be so mean h
Manuel Vazquez Acosta wrote:
Hi all,
I'm debugging a Plone site in an AMD64 laptop. When I first tried to run
Zope, I got this exception:
In general, versions numbers for both Python and the app are helpful.
OverflowError: signed integer is greater than maximum
In the archives I encounter n
On Thu, 2008-07-03 at 14:20 -0500, Larry Bates wrote:
> I suspect there is some "misunderstanding" here. Why exactly do you think
> you
> need to have your instances named with [] characters in them?
>
I often misunderstand. :-)
But, I am implementing specifications in Python that are alre
Hello,
> Hello. Been using the gnuplot lately. Program runs fine. And its plots
> as well. Now i want to make an exe file out of this program using
> py2exe. Cud some1 help me in telling me how this is done. Thnks
You probably mean the Python gnuplot bindings (otherwise you're in the
wrong mailing
Hello,
> I'm working on spell suggestions for a list of places(~10^6) e.g pizza
> hut What data structure shall I use for max performance/efficiency?
>
> Typing pizza should yield something like
>
> pizza hut pizza corner<...<...
> ...
> ...
> ...
A trie? (http://en.wikipedia.org/wiki/Trie).
Goog
Mensanator wrote:
On Jul 3, 2:13�am, Bruno Desthuilliers wrote:
Terry Reedy a �crit :
This has been added to itertools at least for 2.6/3.0
Great !
Well, it will be great at some point in the future
when Python 2.6/3.0 have actually been released and
The betas 'have actually been rele
On Jul 2, 11:09 am, George Sakkis <[EMAIL PROTECTED]> wrote:
> On Jun 30, 3:16 pm, Mike <[EMAIL PROTECTED]> wrote:
>
> > On Jun 30, 1:41 pm, George Sakkis <[EMAIL PROTECTED]> wrote:
>
> > > Because _typically_ a web template consists of mostly HTML, with
> > > relatively little presentational logic
On Jul 3, 2:16 pm, varun chadha <[EMAIL PROTECTED]> wrote:
> i am developing an application using Tkinter where 'next' button
> takes to another window and removes the first one from screen and
> 'back' button bring me back to previous window and so on.
> though i am able to move from one window t
Tim Cook wrote:
Hi All,
I have a need (if at all possible) to create instance names using '['
and ']', i.e. [at]=ClassA0(), [at0001]=ClassB2(), etc.
Of course Python tries to unpack a sequence when I do that. Is there
anyway to do this?
I do have a workaround but it is an ugly, nasty URL
i am developing an application using Tkinter where 'next' button
takes to another window and removes the first one from screen and
'back' button bring me back to previous window and so on.
though i am able to move from one window to another but is unable to
remove the previous one from the screen.
Callie Bertsche wrote:
I have a closely related note. How do I write to a relative path with
python? Example,
source = open('/../../directory/subdirectory/file.extension')
What am I missing?
--
http://mail.python.org/mailman/listinfo/python-list
Leave off the beginning slash.
-Matt
--
http:/
Hi,
Walter Dörwald wrote:
> XIST has been using with blocks since version 3.0.
>
> Take a look at:
> http://www.livinglogic.de/Python/xist/Examples.html
>
>
> from __future__ import with_statement
>
> from ll.xist import xsc
> from ll.xist.ns import html, xml, meta
>
> with xsc.Frag() as node
On Jul 3, 8:06 pm, "[EMAIL PROTECTED]"
<[EMAIL PROTECTED]> wrote:
> On 3 juil, 18:51, defn noob <[EMAIL PROTECTED]> wrote:
>
> > well the reason i unzipped and placed it in site-packages was because
> > nothign happened when i ran setup.py(unzipped).
>
> What do you mean, "running setup.py unzipped
Dave schrieb:
First to admit I'm a newbie at Python, IMAP, or SSL. And it's been a
long time since I've posted anything to a Usenet group. But I've
spent countless hours spinning my wheels on this one, so I thought I'd
ask for help.
I'm trying write some Python code to connect to Gmail from wo
I have a closely related note. How do I write to a relative path with
python? Example,
source = open('/../../directory/subdirectory/file.extension')
What am I missing?
--
http://mail.python.org/mailman/listinfo/python-list
On Jul 3, 12:15 pm, Tim Grove <[EMAIL PROTECTED]> wrote:
> I would like to write a python script which could take a movie file name
> (avi, mov, mpg) along with a start and stop time as parameters, and
> return to me a new movie file just containing that section of the
> original which I'm interes
Hi All,
I have a need (if at all possible) to create instance names using '['
and ']', i.e. [at]=ClassA0(), [at0001]=ClassB2(), etc.
Of course Python tries to unpack a sequence when I do that. Is there
anyway to do this?
I do have a workaround but it is an ugly, nasty URL mangling thing. :-
fizzi wrote:
> For the Iphone lovers out there,
Wrong group. No weirdos here.
--
http://mail.python.org/mailman/listinfo/python-list
On 3 juil, 18:51, defn noob <[EMAIL PROTECTED]> wrote:
> well the reason i unzipped and placed it in site-packages was because
> nothign happened when i ran setup.py(unzipped).
What do you mean, "running setup.py unzipped" ???
The correct way to install a package is to:
- unzip (untar, whatever)
First to admit I'm a newbie at Python, IMAP, or SSL. And it's been a
long time since I've posted anything to a Usenet group. But I've
spent countless hours spinning my wheels on this one, so I thought I'd
ask for help.
I'm trying write some Python code to connect to Gmail from work, where
I need
I would love the same thing. Dont know what you are doing but this
might be relevant even if it is not what you are asking for:
http://imdbpy.sourceforge.net/
library to take data from imdb.
--
http://mail.python.org/mailman/listinfo/python-list
and yes it is parallel python.
and windows vista.
and the python GUI shell.
--
http://mail.python.org/mailman/listinfo/python-list
On Jul 3, 3:11 pm, Bruno Desthuilliers wrote:
> Quek a écrit :
>
> > Hi all,
>
> > I'm reallynewto Python and I've been reading up some texts on older
> > versions of Python (2.2 to be specific).
>
> > The text briefly mentionednewstyleand classic classes.
>
> > I'd really like to know in the curr
On Jun 30, 11:25 pm, Ali Servet Dönmez <[EMAIL PROTECTED]> wrote:
> On Jul 1, 12:15 am, Fuzzyman <[EMAIL PROTECTED]> wrote:
>
>
>
> > On Jun 30, 10:46 pm, Ali Servet Dönmez <[EMAIL PROTECTED]> wrote:
>
> > > I don't want to be so mean here, but how hard it could be be writing a
> > > freesoftware w
On Jul 2, 9:33 am, Ali Servet Dönmez <[EMAIL PROTECTED]> wrote:
> On Jul 1, 12:15 am, Fuzzyman <[EMAIL PROTECTED]> wrote:
>
>
>
> > On Jun 30, 10:46 pm, Ali Servet Dönmez <[EMAIL PROTECTED]> wrote:
>
> > > I don't want to be so mean here, but how hard it could be be writing a
> > > freesoftware whi
On Jul 2, 9:33 am, Ali Servet Dönmez <[EMAIL PROTECTED]> wrote:
> On Jul 1, 12:15 am, Fuzzyman <[EMAIL PROTECTED]> wrote:
>
>
>
> > On Jun 30, 10:46 pm, Ali Servet Dönmez <[EMAIL PROTECTED]> wrote:
>
> > > I don't want to be so mean here, but how hard it could be be writing a
> > > freesoftware whi
I would like to write a python script which could take a movie file name
(avi, mov, mpg) along with a start and stop time as parameters, and
return to me a new movie file just containing that section of the
original which I'm interested in. Is there a Python library which could
already perform
well the reason i unzipped and placed it in site-packages was because
nothign happened when i ran setup.py(unzipped). this has worked with
other packages before.
--
http://mail.python.org/mailman/listinfo/python-list
On Jul 2, 3:38 am, rocksportrocker <[EMAIL PROTECTED]>
wrote:
> Hi,
>
> I've got some problems with the following setup.py file.
> using "python setup.py install -f" it shows that wrap_ica.so is copied
> to /usr and not to /site-packages as I assumed.
> What am I doing wrong ? I'm using Python
defn noob wrote:
> i unzipped and put the folder in site-packages. when i run setup.py
> install nothing happens.
Don't do that. Remove it from there. Put it somewhere else (temp), and use
$ python setup.py install
Look into site-packages afterwards, and see if it got placed there.
Diez
--
htt
Thanks Guilherme. That helped. I guess I was thinking that pysqlite would
automatically come with some version of sqlite. The fact that it doesn't is
what was causing me to get the strange results.
I downloaded the Windows version of the SQLite3.dll. I didn't know where to
put it so I first pu
Hi, two comments.
Gerard flanagan gmail.com> writes:
> Nice! Here's a version that uses elementtree:
[...]
> def __call__(self, value='', **kargs):
> self.element.text = value
This should spell
def __call__(self, value=None, **kargs):
> class builder(element):
> def
Ben Keshet a écrit :
I have a probably simple beginner's question -
I have a script that I am currently able to print its output. instead,
i want to write it into a file - I tried different versions of write()
but might have gotten the syntax wrong.
The syntax is:
fileobj.write(somethin
On Thu, Jul 3, 2008 at 11:06 AM, Adam Lanier <[EMAIL PROTECTED]> wrote:
> david odey wrote:
>>
>> I write to inform you that the reason I subscribed to this web page is not
>> been met.
>>
>> I want to be sent sample codes in programming languages especially python
>> and an email tutorial on C#.
david odey wrote:
I write to inform you that the reason I subscribed to this web page
is not been met.
I want to be sent sample codes in programming languages especially
python and an email tutorial on C#. I will be happy if these demands
are met.
Thanks in anticipation.
ALWAYS THERE F
Walter Dörwald wrote:
> XIST has been using with blocks since version 3.0.
> [...]
> with xsc.Frag() as node:
> +xml.XML()
> +html.DocTypeXHTML10transitional()
> with html.html():
> [...]
Sweet! I don't like having to use the unary operator tho, I wanted
something as simple as possible, so I
defn noob a écrit :
i unzipped
what ?
and put the folder
which folder
in site-packages.
which one ? (remember that if you have more than one Python installation
on your machine, you'll have more than one site-packages too).
when i run setup.py
install nothing happens.
Well... usua
On Jul 3, 5:02 pm, Chris <[EMAIL PROTECTED]> wrote:
> On Jul 3, 4:11 pm, defn noob <[EMAIL PROTECTED]> wrote:
>
> > i unzipped and put the folder in site-packages. when i run setup.py
> > install nothing happens.
>
> > when i do import pp from shell it complains it doesnt exist.
>
> > isnt placing
On Jul 3, 4:11 pm, defn noob <[EMAIL PROTECTED]> wrote:
> i unzipped and put the folder in site-packages. when i run setup.py
> install nothing happens.
>
> when i do import pp from shell it complains it doesnt exist.
>
> isnt placing the folder in site-packages enough?
>
> these setup.py-files oft
I have a probably simple beginner's question -
I have a script that I am currently able to print its output. instead,
i want to write it into a file - I tried different versions of write()
but might have gotten the syntax wrong. the variable I want to write is
a line from a file I am reading
I write to inform you that the reason I subscribed to this web page
is not been met.
I want to be sent sample codes in programming languages especially
python and an email tutorial on C#. I will be happy if these demands
are met.
Thanks in anticipation.
ALWAYS THERE FOR YOU
___
On Jul 3, 9:11 am, defn noob <[EMAIL PROTECTED]> wrote:
> i unzipped and put the folder in site-packages. when i run setup.py
> install nothing happens.
>
> when i do import pp from shell it complains it doesnt exist.
What is "pp"? Parallel Python?
>
> isnt placing the folder in site-packages e
Hi all,
I'm debugging a Plone site in an AMD64 laptop. When I first tried to run
Zope, I got this exception:
OverflowError: signed integer is greater than maximum
In the archives I encounter no solutions. This is what I could find, so
I share with you all:
It seems that on 64bit platforms, sys.
i unzipped and put the folder in site-packages. when i run setup.py
install nothing happens.
when i do import pp from shell it complains it doesnt exist.
isnt placing the folder in site-packages enough?
these setup.py-files often dont work but normally it still works.
--
http://mail.python.
On Jul 3, 2:13�am, Bruno Desthuilliers wrote:
> Terry Reedy a �crit :
>
>
>
> > Mensanator wrote:
> (snip)
> >> Lookup "Cartesian Product".
> (snip)
> >> for a in [True,False]:
> >> � for b in [True,False]:
> >> � � for c in [1,2,3,4]:
> >> � � � print 'combined settings:',a,'\t',b,'\t',c
>
> > Th
On Jul 2, 8:40 pm, "Leo Lee" <[EMAIL PROTECTED]> wrote:
> I need a window's handle to be passed to external c++.
> Thanks in advance
Are you talking about a wxPython wx.Window object or an external
window handle? If the latter, then I recommend asking about that on
the PyWin32 user's group. Otherw
On 2 jul 2008, at 20:21, Dikkie Dik wrote:
If it so fast growing, I'd rather wait for a stable release...
LOL
--
yeah compare to what's happening with iPhone and iPod...
--
http://mail.python.org/mailman/listinfo/python-list
Pierre-Alain Dorange a écrit :
Bruno Desthuilliers <[EMAIL PROTECTED]> wrote:
I try the staticmethod, it works fine. Very helpful.
But i don't like it very much, it seems 'complicated' (python was
supposed to be simple).
Try doing the same thing in C++ !-)
OK ;-)
I just ask myself what was
1 - 100 of 116 matches
Mail list logo