Ron Adam <[EMAIL PROTECTED]> writes:
> In this view and empty set can be True for all(). Is it posible
> 'all([])' is undefined? Here, none() and all() return contradicting
> values. So maybe the correct version may be...
I don't see any contradiction. all([]) and none([]) are both true.
Any
I see from googling around that this is a popular topic, but I haven't seen
anyone saying "ah, yes, that works", so here it goes.
How does one connect through a proxy which requires basic authorisation?
The following code, stolen from somewhere, fails with a 407:
proxy_handler = urllib2.ProxyHand
Thanks for the 'debug mode' tip. My file is only 24k (a photo) and the
whole thing makes it to the FTP server. It's just the command never
returns so my program cannot continue execution. When I do turn
debugging on, the last command I see is:
*resp* '150 Connection accepted'
Could it be my FT
Hi Dennis
Sure, I get it. I do most of my work in Delphi, which is, shall we
say, not lax about floating-point types. Thinking about this more, I
realise my initial interest was in looking at the // operator as
something new, whereas I now see it probably just wraps math.floor();
obviously then
Hi
I have developped a python script to control a rs232c rs485 converter,
named pyRS485
with pythoncard on windows.
ftp-champo.ac-toulouse.fr/pub/btseo/pdalet/python/
python 2.4 Electronics Applications 20050902.exe
The best solution is to send the last character with interrupt. when
the TDR is
Well, in that case, the internal direction is just what I need. Thank
you so much for help.
--
http://mail.python.org/mailman/listinfo/python-list
walterbyrd wrote:
>>You can bet it'll be plain old cgi - possibly with an outdated Pyton version.
>
> I think you are right. In practical terms, what does that mean? Will I
> not be able to use modules? Will I not be able to use frameworks?
It means that you will be limited to what can run with
On 29/03/06, Fredrik Lundh <[EMAIL PROTECTED]> wrote:
> [EMAIL PROTECTED] wrote
> > write a tutorial as good as what is already there. But what I can
> > do is report problems I find when using it, and make suggestions
> > about how to avoid those problems.
>
> There's no shortage of ideas -- nor
Sullivan WxPyQtKinter wrote:
> I do not want to use Cookies in my site since not all web browser
> support it well and sometimes people close cookie functioning for
> security reasons.
Too bad for them. The only other way to support session is by encoding
the session id in the request, and it's m
> I'm completely on board with the semantics for any(). But all() bothers
> me. If all() receives an empty list, it will return True, and I don't
> like that. To me, all() should be a more restrictive function than any(),
> and it bothers me to see a case where any() returns False but all()
> re
> There's no requirement that the socket module or
> anything else return values using the same object that the
> socket.AF_UNIX constant uses.
Ouch. That's certainly an eyeopener.
For me, this means several things, and I'd really like to hear people's
thoughts about them.
It basically boils do
John Salerno wrote:
> I'm working on another exercise now about generating random numbers for
> the lottery. What I want to do is write a function that picks 5 random
> numbers from 1-53 and returns them. Here's what I have so far:
>
> numbers = range(1, 54)
>
> def genNumbers():
> for x in ra
Paul Rubin wrote:
(snip)
> Why is everyone using shuffle?
>
> >>> import random
> >>> random.sample(xrange(1,41), 5)
> [24, 15, 9, 39, 19]
Great. Didn't know that one.
--
bruno desthuilliers
python -c "print '@'.join(['.'.join([w[::-1] for w in p.split('.')]) for
p in '[EMAIL PROTEC
Ed Singleton wrote:
> This would be a perfect situation for a wiki. I think it would be a
> good experiment to have a wiki containing the documentation (separate
> from the main documentation and clearly marked experimental for the
> moment), and to see if it did self-organise as wikis often do.
[EMAIL PROTECTED] wrote:
> I'm using the ftp library (layer on top of sockets) to transfer files
> from a series 60 to an ftp site. everything works fine, the whole
> file gets uploaded but the command never returns! so
> i call:
>
> ftp.storbinary('STOR ' + filename,F,1024) # store the image
>
Joel Hedlund wrote:
> For me, this means several things, and I'd really like to hear people's
> thoughts about them.
>
> It basically boils down to "don't ever use 'is' unless pushed into a corner,
> and nevermind what PEP8 says about it".
nonsense.
> Identity checks can only be done safely to c
sorry
> You compare a module.CONSTANT to the result of an expression
s/an expression/a binary operation/
/joel
Joel Hedlund wrote:
>>If it weren't for the current CPython optimization (caching small
>>integers)
>
>
> This has already been covered elsewhere in this thread. Read up on it.
>
Hello!
I am writing a small program using mod_python publisher extension. I
have created several python files and imported them in a `main' file.
How can I stop mod_python to byte compile the files? I want to make
changes to the files and see result imediately!
In the current setup only
"mneagul" wrote:
>I am writing a small program using mod_python publisher extension. I
> have created several python files and imported them in a `main' file.
>How can I stop mod_python to byte compile the files? I want to make
> changes to the files and see result imediately!
>
>In th
Joel Hedlund wrote:
>> There's no requirement that the socket module or
>> anything else return values using the same object that the
>> socket.AF_UNIX constant uses.
>
>
> Ouch. That's certainly an eyeopener.
>
> For me, this means several things, and I'd really like to hear people's
> thought
Fredrik Lundh wrote:
> "mneagul" wrote:
>
> >I am writing a small program using mod_python publisher extension. I
> > have created several python files and imported them in a `main' file.
> >How can I stop mod_python to byte compile the files? I want to make
> > changes to the files and se
[EMAIL PROTECTED] (Alex Martelli) wrote:
> Florian Diesch <[EMAIL PROTECTED]> wrote:
>...
>> >> are and want to do it anyway?) Linux puts the whole file system
>> >> (including mounted iPods, ISOs and NTFS drives) in one hierarchy.
>> >
>> > Yes, but you may still want to distinguish (because
Paul Rubin wrote:
> Ron Adam <[EMAIL PROTECTED]> writes:
>> In this view and empty set can be True for all(). Is it posible
>> 'all([])' is undefined? Here, none() and all() return contradicting
>> values. So maybe the correct version may be...
>
> I don't see any contradiction. all([]) and n
Problem solved!!!
Thank You!
--
http://mail.python.org/mailman/listinfo/python-list
I know what it is, and yet the knowledge of what a CMS is, is so vague
that I find myself asking this question every now and then. I've
googled and read the resources too. However, the knowledge is still not
clear. It is so vague.
Me: Just what is a content management system?
Myself: A place whe
Dennis Lee Bieber <[EMAIL PROTECTED]> writes:
> Do we have the same dictionary?
>
> Ephemeral, as in "mayflies are ephemeral", means "of short life"...
> A cookie with a built-in expiration would, to my mind, be "ephemeral"
Ephemeral cookies in web-head jargon are cookies with no spec
Ron Adam <[EMAIL PROTECTED]> writes:
> Just thinking about things. I really just want what is best for
> Python in the long term and am not trying to be difficult.
I'm sorry, maybe it's the math geek in me, but I just see all those
suggestions about "not not S" as being contorted. It's obvious t
"Fredrik Lundh" <[EMAIL PROTECTED]> writes:
> http://ianbicking.org/docs/pytest-presentation/pytest-slides.html
> (see the "why not unittest" slide for a list of issues with
> unittest)
To see many of these points rebutted, see this post:
http://dirtsimple.org/2005/08/ruby-gems-python-eggs-a
Tim Roberts <[EMAIL PROTECTED]> writes:
> "Math" <[EMAIL PROTECTED]> wrote:
>>And yes, I really need this accuracy..
>
> Then you need to understand that you don't really HAVE this accuracy.
With the Decimal type, you do.
>>> import decimal
>>> decimal.getcontext().prec = 5
>>> deci
>> For me, this means several things, and I'd really like to hear people's
>> thoughts about them.
> you need to spend more time relaxing, and less time making up arbitrary
> rules for others to follow.
I'm very relaxed, thank you. I do not make up rules for others to follow. I ask
for other peo
On Tue, 28 Mar 2006 15:18:03 -0800, Paul Rubin wrote:
> Why is everyone using shuffle?
That's a good question. I don't have a good answer.
--
Steven.
--
http://mail.python.org/mailman/listinfo/python-list
Steve R. Hastings wrote:
> I'm completely on board with the semantics for any(). But all() bothers
> me. If all() receives an empty list, it will return True, and I don't
> like that. To me, all() should be a more restrictive function than any(),
> and it bothers me to see a case where any() ret
> Me: You can have a file-system on a common network server. I can even
> have a network server and give remote access to people over a VPN. I
> can host content on a terminal server, I can give them VNC clients, or
> an RDP client, and let them browse what they want to.
No, because the contents a
Paul Rubin wrote:
> Why is everyone using shuffle?
maybe they're all stuck on 2.2 ?
$ python2.2
>>> import random
>>> random.shuffle
>
>>> random.sample
Traceback (most recent call last):
File "", line 1, in ?
AttributeError: 'module' object has no attribute 'sample'
>>>
--
http://mail.
>> (I'm actually tempted to just copy and paste each page from the
>> tutorial into the current wiki but I'd hate for it all to be deleted
>> after doing that).
>
> just do it!
btw, one alternative could be to use an infogame site for this purpose:
http://infogami.com
this gives you revision
At risk of flogging a dead horse...
On Wed, 29 Mar 2006 01:01:00 -0800, vdrab wrote:
>> I'm completely on board with the semantics for any(). But all() bothers
>> me. If all() receives an empty list, it will return True, and I don't
>> like that. To me, all() should be a more restrictive funct
No! That's Python from UML. OP asked for the opposite.
--
http://mail.python.org/mailman/listinfo/python-list
Steven D'Aprano <[EMAIL PROTECTED]> writes:
> While the implemented behaviour might be more practical than the
> alternatives, it is still worrying paradoxical. If "All sheep are woolly",
> then obviously it must also be true that "Any sheep is woolly". More
> formally, if all(X), then any(X) -- ex
Hello,
I'm now trying to get our PBX working with our Python application, but I have
no success so far. I have searched for both tsapi and tapi python wrappers,
but with no luck, I only found ruby (incompleted) one for tsapi.
No problem, I decided to write my own, using pythonwin and ctypes. Howe
[Follow-ups suggested]
Fleeing from the madness of the J2be - IT Services jungle
J2be <[EMAIL PROTECTED]> stumbled into
news:comp.lang.python,comp.lang.php,alt.www.webmaster,comp.infosystems.www.authoring.misc,microsoft.public.sharepoint.portalserver
and said:
[attribution lost]
>> You will ju
hi
i am using a telnet session to simulate an authentication mechanism
USER = "user"
PASSWORD = "password"
try:
telnet = telnetlib.Telnet(HOST)
telnet.set_debuglevel(5)
telnet.read_until("login: ")
telnet.write(USER + "\n")
telnet.read_until("Password: ")
hi
i am using a telnet session to simulate an authentication mechanism
USER = "user"
PASSWORD = "password"
try:
telnet = telnetlib.Telnet(HOST)
telnet.set_debuglevel(5)
telnet.read_until("login: ")
telnet.write(USER + "\n")
telnet.read_until("Password: ")
[EMAIL PROTECTED] writes:
> When i purposely input a wrong password, it "hangs" at the login prompt
> waiting for
> login and Password. The host i am telnetting to is a unix server.
> How can i "exit" this login prompt if the user keys in wrong password
> in my script?
It looks to me like after y
[EMAIL PROTECTED] wrote:
> hi
> i have a program that works very similar to tail -f in Unix
> It will need a Ctrl-C in order to break out of the program.
> I wish to run this program using python (either thru os.system() or
> some other subprocess modules) and how can i pass Ctrl-C to this
> progr
Alejandro wrote:
> Peter Hansen wrote:
>
>>Alejandro wrote:
>>
>>>I'm using pySerial to talk to a RS232 to RS485 converter. In order to
>>>control the converter, I need to control the DTR line to enable/disable
>>>de RS485 driver.
>>
>>This seems a little odd to me. We've used several RS232-RS485
[EMAIL PROTECTED] writes:
>hi
>i am using a telnet session to simulate an authentication mechanism
>USER = "user"
>PASSWORD = "password"
>try:
>telnet = telnetlib.Telnet(HOST)
>telnet.set_debuglevel(5)
>telnet.read_until("login: ")
>telnet.write(USER + "\n")
>
Joel Hedlund wrote:
> It basically boils down to "don't ever use 'is' unless pushed into a
> corner, and nevermind what PEP8 says about it".
A quick grep[*] of the Python library shows the following common use-cases
for 'is'. The library isn't usually a good indicator of current style
though: a
"Water Cooler v2" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
>I know what it is, and yet the knowledge of what a CMS is, is so vague
> that I find myself asking this question every now and then. I've
> googled and read the resources too. However, the knowledge is still not
> clear
Roger Miller wrote:
> I see that the posixfile module is deprecated. Have the SEEK_SET, etc.
> constants moved somewhere else, or do I need to define them myself?
In Python 2.5 they have been added to the os module, but for now I think
you are probably expected to just continue using posixfile o
> [*] I discovered a neat feature I didn't know my editor had: grepping for
> "<[c:python-keyword>is"
Neat indeed. Which editor is that?
Thanks for a quick and comprehensive answer, btw.
Cheers!
/Joel
--
http://mail.python.org/mailman/listinfo/python-list
I am seeking for a method to parse single lines of Python code (infact
they are only formulas, so I generate a line like RESULT=). I
do only want to know if the syntax is correct and if there is an error
best would be to know where.
I did find PyParser_SimpleParseString which does return a node
s
How can I use python to find images that looks quite similar? Thought
I'd scale the images down to 32x32 and convert it to use a standard
palette of 256 colors then compare the result pixel for pixel etc, but
it seems as if this would take a very long time to do when processing
lots of images.
Any
Joel Hedlund wrote:
>> [*] I discovered a neat feature I didn't know my editor had: grepping
>> for "<[c:python-keyword>is"
>
> Neat indeed. Which editor is that?
Epsilon from www.lugaru.com. The drawback is that it costs real money
although you can try the beta for the next version until it i
toto wrote:
> Hi,
>
> I'm trying to find some howto, tutorial in order to create a python program
> that will allow plug-in programming. I've found various tutos on how to
> write a plug-in for soft A or soft B but none telling me how to do it in my
> own programs. Do you have any bookmarks ??
Tr
Russell Warren wrote:
> > the collections module was added in 2.4
>
> Ah... sorry about that. I should have checked my example more closely.
> What I'm actually doing is rebinding some Queue.Queue behaviour in a
> "safe" location like this:
>
> def _get(self):
> ret = self.queue.popleft()
> D
Hello pythonians! ;-D ,
I have a little problem when I expose (assisted by boost.python) classes
with virtual functions, specially with operator().
In the C++ code below I test two different implementations of a member
function of A that
takes as an argument the abstract class Base (see Option 1
Hello,
A friend is having an issue with Tkinter that I'm not able to help him
with, so I'm posting here.
He'd like to put something inside of a frame without the frame
automagickally resizing.
Example:
from Tkinter import *
root = Tk()
# with these 2 frames by themselves, they are the
# size
"msoulier" <[EMAIL PROTECTED]> wrote:
> Any suggestions on how to maintain the size of the frame when you pack
> a label into it like this?
calling pack_propagate(0) on the parent widget should work:
http://effbot.org/tkinterbook/pack.htm#Tkinter.Pack.pack_propagate-method
--
http://mail.
[Steven D'Aprano]
> ...
> While the implemented behaviour might be more practical than the
> alternatives, it is still worrying paradoxical. If "All sheep are woolly",
> then obviously it must also be true that "Any sheep is woolly". More
> formally, if all(X), then any(X) -- except for the case of
Water Cooler v2 wrote:
> So, again, where are the boundaries? What about non-public content?
> What about access rights? Do you have seperate users on CMS's having
> their seperate folders as well, where they could put their own private
> content? Or, is the idea behind CMS about "sharing" and so t
Use PIL..of course..
Sudharshan S
--
http://mail.python.org/mailman/listinfo/python-list
Thomas W wrote:
> How can I use python to find images that looks quite similar? Thought
> I'd scale the images down to 32x32 and convert it to use a standard
> palette of 256 colors then compare the result pixel for pixel etc, but
> it seems as if this would take a very long time to do when process
Thomas W wrote:
> How can I use python to find images that looks quite similar? Thought
> I'd scale the images down to 32x32 and convert it to use a standard
> palette of 256 colors then compare the result pixel for pixel etc, but
> it seems as if this would take a very long time to do when proces
I dont get it..cant the matching take place efficiently with PIL, only
that you need to have a condition i.e if the mismatch exceeds a certain
threshold, they are not similar,
http://gumuz.looze.net/wordpress/index.php/archives/2005/06/06/python-webcam-fun-motion-detection/
Check the above link,
> btw, one alternative could be to use an infogame site for this purpose:
>
>http://infogami.com
>
> this gives you revision history, a permissions system (limiting editing to
> registered users might be a good idea), comments, an associated blog,
> voting, feeds, change logs, etc.
alright, I
Thanks, but that didn't help either. Since storbinary is being called
from the main script, I can't see where else it could be getting hung
up. Are there any other debugging techniques I could explore?
I'm sending a 24k image and it is viewable on the destination server,
so it's making it over.
[EMAIL PROTECTED] wrote:
> I dont get it..cant the matching take place efficiently with PIL, only
> that you need to have a condition i.e if the mismatch exceeds a certain
> threshold, they are not similar,
>
>
http://gumuz.looze.net/wordpress/index.php/archives/2005/06/06/python-webcam-fun-motio
David Hirschfield wrote:
> Is there a module out there that would be able to parse a csh script and
> give me back a parse tree?
>
> I need to be able to parse the script, modify some variable settings and
> then write the script back out so that the only changes are the
> variables I've modified
On Wed, 29 Mar 2006 15:19:05 +0300
"Kimmo Laine" <[EMAIL PROTECTED]> opined:
> "Water Cooler v2" <[EMAIL PROTECTED]> wrote in message
> news:[EMAIL PROTECTED]
> >I know what it is, and yet the knowledge of what a CMS is, is so
> >vague
> > that I find myself asking this question every now and then
Peter Hansen wrote:
> Alejandro wrote:
> >
> > Yes. The device is very simple (I made it).
>
> Perhaps a very simple change to it would make it as convenient as the
> commercial products. I vaguely recall (not having checked for over a
> decade) that all they do is set the outgoing DTR line wh
Hello,
it's time for the 7th Python Bug Day, just before 2.5 alpha 1 is released.
The aim of the bug day is to close as many bugs, patches and feature requests
as possible, this time with a focus on small feature additions that can still go
into the upcoming 2.5 alpha release.
When?
^
The bu
Hello here is the code:
from win32com.client import Dispatch
packing = Dispatch("Excel.Application")
packing.Visible = 1
packing.Workbooks.Add()
#packing.Worksheets.Add()
packing.ActiveSheet.Range("A1").ColumnWidth = 8
packing.ActiveSheet.Ran
[Thomas]
> How can I use python to find images that looks quite similar?
Have you looked at http://www.imgseek.net/ ? It's an Open Source Python photo
collection manager that does exactly what you're asking for.
--
Richie Hindle
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/pyt
On 2006-03-29, pdalet <[EMAIL PROTECTED]> wrote:
> The best solution is to send the last character with
> interrupt. when the TDR is empty an interrupt is generated. An
> interrupt program is executed to change the state of dtr.
No. That doesn't work. You have to wait until the transmit
_shift_r
On 2006-03-29, Peter Hansen <[EMAIL PROTECTED]> wrote:
>>>This seems a little odd to me. We've used several RS232-RS485
>>>converters without needing to do that. Maybe a more sophisticated
>>>device would eliminate this need?
>>
>> Yes. The device is very simple (I made it).
>
> Perhaps a very
On 2006-03-29, Dale Strickland-Clark <[EMAIL PROTECTED]> wrote:
>> i have a program that works very similar to tail -f in Unix It
>> will need a Ctrl-C in order to break out of the program. I
>> wish to run this program using python (either thru os.system()
>> or some other subprocess modules) and
[EMAIL PROTECTED] wrote:
> I am seeking for a method to parse single lines of Python code (infact
> they are only formulas, so I generate a line like RESULT=). I
> do only want to know if the syntax is correct and if there is an error
> best would be to know where.
>
> I did find PyParser_SimplePa
I did this once for a motion dection algorithm. I used luminescence
calculations to determine this. I basically broke the image into a
grid of nine (3x3) areas and calculated the luminescene for each
section and if it changed signficantly enough then there has been
motions. The more sections, th
Dave Benjamin wrote:
> On Tue, 28 Mar 2006, David Hirschfield wrote:
>
> > I need to be able to parse the script, modify some variable settings and
> > then write the script back out so that the only changes are the
> > variables I've modified (comments, ordering of statements, etc. must
> > remai
hello,
I use the logging module include in Python 2.4 distribution, and I 'd
like to have a logger witth several Handlers .
I know how to do this by coding in python, but could I specify this
directly in the logger configuration file?
Thanks in advance!
bertrand
--
http://mail.python.org/mailm
ocssolutions.com offers hosting solutions and will host Zope
--
http://mail.python.org/mailman/listinfo/python-list
Can someone tell me where I can download
a version of ctypes/libffi that will work on a Intel based Macintosh?
I'm running Mac OS X 10.4.5 and the
ActiveState Python 2.4.2 distribution.
I've tried building libffi 1.20 which
came with ctypes 0.9.9.3 and got a message from the libffi configure scr
[EMAIL PROTECTED] wrote:
> Thanks, but that didn't help either. Since storbinary is being called
> from the main script, I can't see where else it could be getting hung
> up. Are there any other debugging techniques I could explore?
>
> I'm sending a 24k image and it is viewable on the destinatio
Hi,I know how to write files to a zip file but i was wondering if there was a way to add a empty folder to the zip file using the zipfile module? I can only write files and not directories to a zip file.Thank You.
--
http://mail.python.org/mailman/listinfo/python-list
I can't open IDEL or any .pyw file.
When I click on IDEL.pyw, nothing happens!
But python itself is ok.
Has anybody met this problem?
--
http://mail.python.org/mailman/listinfo/python-list
Alex Martelli wrote:
> I've never seen an "object-relational mapping" (technical
> term for cruft that tries to avoid people having to learn and use SQL)
> which doesn't drive me into a murderous, foam-at-mouth rage in a very
> short time -- I WANT my SQL, I LOVE SQL, it's WAY more powerful
> and
Right. You know I took your suggestion for more print statements and
found the offending line.
[SNIP]
print "close start"
conn.close()
print "close end"
#return self.voidresp()
print "end of everything"
self.voidresp() was hanging! Do I need it? The file
On 29/03/06, Fredrik Lundh <[EMAIL PROTECTED]> wrote:
> > btw, one alternative could be to use an infogame site for this purpose:
> >
> >http://infogami.com
> >
> > this gives you revision history, a permissions system (limiting editing to
> > registered users might be a good idea), comments, a
On 29/03/06, Ed Singleton <[EMAIL PROTECTED]> wrote:
> On 29/03/06, Fredrik Lundh <[EMAIL PROTECTED]> wrote:
> > > btw, one alternative could be to use an infogame site for this purpose:
> > >
> > >http://infogami.com
> > >
> > > this gives you revision history, a permissions system (limiting e
Hi,
I was wondering : as there has been a change in python.org website with
a new design, is it planned for the documentation section to be
revamped as well ? If yes, would it be just a appearance renewal or
would there also be changes in the doc itself ?
Martin.
--
http://mail.python.org/mailm
Hi Luca,
The words xlDiagonalDown e xlNone are Excel constants and don't are in
the Local NameSpace
use these values:
xlNone = -4142
xlDiagonalDown = 5
Then the last line stay like that
"""
packing.ActiveSheet.Selection.Borders(5).LineStyle = -4142
# Excel Constants: xlNone = -4142 xl
At PyCon I met a handful of programmers from the Little Rock area. Are there enough of us with any interest in forming a Central Arkansas Python Users Group?For others of you that have started user groups, how do you get the word out, especially in an area where Python coders are difficult to find
Jeffrey Froman <[EMAIL PROTECTED]> wrote:
> Alex Martelli wrote:
>
> > I've never seen an "object-relational mapping" (technical
> > term for cruft that tries to avoid people having to learn and use SQL)
> > which doesn't drive me into a murderous, foam-at-mouth rage in a very
> > short time -- I
[EMAIL PROTECTED] wrote:
> Right. You know I took your suggestion for more print statements and
> found the offending line.
>
> [SNIP]
> print "close start"
> conn.close()
> print "close end"
> #return self.voidresp()
> print "end of everything"
>
> self.voi
Ed Singleton wrote:
> > alright, I got bored and uploaded a copy of the current Python tutorial to
> >
> > http://pytut.infogami.com
>
> Damn. You beat me to it by an hour.
>
> http://singletoned.infogami.com/_special/index
oops. sorry for that.
> > I had a nightmare with character encoding
Got it. Thanks for your help. :)
--
http://mail.python.org/mailman/listinfo/python-list
I'm opening a telnet session with the subprocess call below. I then
wait ten seconds and attempt to terminate the telnet window I created.
Unfortuantely, the telnet window remains after the 'TerminateProcess"
call below. This software works great for opening an executable
directly (i.e. Handle =
Gazing into my crystal ball I observed "Water Cooler v2"
<[EMAIL PROTECTED]> writing in news:1143627824.174540.13710
@z34g2000cwc.googlegroups.com:
> I know what it is, and yet the knowledge of what a CMS is, is so vague
> that I find myself asking this question every now and then. I've
> googled
On 29/03/06, Fredrik Lundh <[EMAIL PROTECTED]> wrote:
> Ed Singleton wrote:
>
> > > alright, I got bored and uploaded a copy of the current Python tutorial to
> > >
> > > http://pytut.infogami.com
> >
> > Damn. You beat me to it by an hour.
> >
> > http://singletoned.infogami.com/_special/inde
Ernesto wrote:
> I'm opening a telnet session with the subprocess call below. I then
> wait ten seconds and attempt to terminate the telnet window I created.
> Unfortuantely, the telnet window remains after the 'TerminateProcess"
> call below. This software works great for opening an executable
1 - 100 of 234 matches
Mail list logo