Fredrik Lundh wrote:
> Analabha Roy wrote:
>
>> I'm running Fedora Core 3, and recently I've encountered serious problems
>> with apps that need python to run.
>>
>> running any such app gives errors like:
>>
>> ImportError: /usr/lib/python2.3/site-packages/rhpl/iconv.so: undefined
>> symbol: Py
Op 2005-09-19, Diez B. Roggisch schreef <[EMAIL PROTECTED]>:
>>
>> split(path)
>> returns a pair (dirname,filename), where dirname is the part of path
>> up to the last slash, and filename is the rest of the string after the
>> last slash.
>
> Bullshit. Slash isn't always the path component d
Hi @all,
I've implementet a simple setup script for my application with py2exe.
The setup.py works fine, but now I want to add version resources to my
*.exe-file. But how can I do it?
I've tested it with the setup.cfg, but that doesn't work. I alwayse
became the errormessage:
error: error in set
Fredrik Lundh wrote:
> [EMAIL PROTECTED] wrote:
>
> > On Slashdot there is a discussion about the future C#3.0:
> > http://developers.slashdot.org/developers/05/09/18/0545217.shtml?tid=109&tid=8
> >
> > http://msdn.microsoft.com/vcsharp/future/
>
> "The extensions enable construction of composi
Analabha Roy wrote:
> I did not build python from source at all, but installed it from rpm
> (python-2.3.4-13.1) downloaded from fc3 repositories.
the problem isn't with the python interpreter, it's that you're using
add-on libraries that don't match your interpreter installation.
where did you
hi to all,
im moving from the windows world to the linux world and i need to make a python script to see if a service is instaled (ex: apache), if it is running or stoped and to start/stop a service like apache or mysql. Theres an API on windows to manage services and i need to know how to do tha
Kay Schluehr wrote:
> Maybe it's an irony of the Python development process that it tries
> to refuse functional programming facilities in just a moment where
> mainstream languages start to embrace them.
hey, at least one other person got my point ;-)
(fwiw, today's python-dev discussion is abo
Hi I want to know whether the program is being run on windows or on
Xnix. Is there any variable or method which tells me that it's windows?
--
http://mail.python.org/mailman/listinfo/python-list
beza1e1 wrote:
> This nails it down, yes. :)
>
> I probably was too deep into OOP thinking-mode to work pythonic. So i
> am now rediscovering the python way.
>
> Have you read Paul Grahams On Lisp (or was it one of his essays)? He is
> strongly in favor of functional programming.
Yes, but this d
Monu Agrawal wrote:
> Hi I want to know whether the program is being run on windows or on
> Xnix. Is there any variable or method which tells me that it's windows?
>
os.name - the value is "posix" for Linux/Unix, "nt" or "ce" for Windows,
and so on...
--
http://mail.python.org/mailman/listinfo/p
[EMAIL PROTECTED] wrote:
> Dear all,
>
> Can anyone point me to a resource that describes the best way of
> organising a python project? My project (gausssum.sf.net) is based
> around a class, and has a GUI that allows 'easy-access' to the methods
> of the class.
Err... Unless it's a *very* simp
Monu Agrawal wrote:
> Hi I want to know whether the program is being run on windows or on
> Xnix. Is there any variable or method which tells me that it's windows?
Will this help?
>>> import sys
>>> sys.platform
'win32'
There is also the platform module, that can give you a lot more
informati
Fredrik Lundh wrote:
> Analabha Roy wrote:
>
>> I did not build python from source at all, but installed it from rpm
>> (python-2.3.4-13.1) downloaded from fc3 repositories.
>
> the problem isn't with the python interpreter, it's that you're using
> add-on libraries that don't match your interpr
>>>"Adriaan Renting" <[EMAIL PROTECTED]> 09/19/05 11:20 am >>>
|
|P.S. you don't need to post your question to this list every 5 minutes.
|
Hmmm, somehow my reply also got posted more than once...
At least that's what it looks like in my mail viewer, I only see one post in
Google.
Maybe it's
On Tue, Sep 20, 2005 at 02:57:26AM -0500, pt python wrote:
> im moving from the windows world to the linux world and i need to make
> a python script to see if a service is instaled (ex: apache), if it is
> running or stoped and to start/stop a service like apache or mysql.
> Theres an API on windo
You might be able to find more about GPIB under the names IEEE488 and HP-IB.
It's a 8-bit parallel communications bus used in lab-automation. But it's been
like 10 years since I used it so I don't remember the specifics. I once wrote a
driver for it under windows 3.0.
Most of the communication is
Hi all,
My question is: How do you tackle with mixing
Unicode and non-Unicode parts of your application?
Context:
The PEP 3000 says
"Make all strings be Unicode, and have a separate bytes() type."
Until then, I am forced to write
# -*- coding: cp123456 -*-
(see 2.1.4 Encoding de
Steve M wrote:
About your main problem: I'm still convinced that it's the order of -jar
and -D that is important, see my other post.
> I have tried (not entirely systematically but pretty exhaustively)
> every combination of backslashes in the cmd string, e.g.:
> -Dsalesforce.config.dir=c\:\\co
Just hitting a strange problem with Python import behavior. It is the
same on all Python 2.x versions and it is probably correct, but I
currently don't understand why this happens.
I have created a directory "dir" with the following three module,
__init__, hello, and test2; and another module t
>> Sorry, my description was not very good, I meant something behaving as:
>>
>> >>>example=Liter("abc","12345","XY")
>> >>>for x in example: print x,
>>
>> a 1 X b 2 Y c 3 4 5
>>
>> or for that append() method,
>>
>> >>>example=Liter("abc", "12345")
>> >>>for i in range(3): print example.next(),
>
I am writing an application that does a lot of filtering of much data
through a sequence of filters.
After some thinking and wasting a lot of time with an object oriented design
with GUI and all, I decided that the Real Way to do this is to create the
filters as independent programs that take inpu
[EMAIL PROTECTED] writes:
> Hi @all,
>
> I've implementet a simple setup script for my application with py2exe.
> The setup.py works fine, but now I want to add version resources to my
> *.exe-file. But how can I do it?
> I've tested it with the setup.cfg, but that doesn't work. I alwayse
> became
Ok!
Now, you wrote your expected results I understand better what you want to do...
Your solution seems fine except the "except IndexError:" part.
I would have wrote:
--
...
except IndexError:
if self.iters:
sel
"Maurice LING" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> I do have another dumb question which is OT here. Say aFunc method
> instantiates a SOAP server that serves forever, will it prevent bFunc
> from running as a separate thread?
If the SOAP server thread never sleeps or b
On Mon, 19 Sep 2005, Bruno Desthuilliers wrote:
York a écrit :
(snip)
I love python. However, as a biologist, I like some high-levels
functions in R. I don't want to spend my time on parse a data file.
http://www.python.org/doc/current/lib/module-csv.html
Then in my python script, I call R
On Mon, 19 Sep 2005, Brett Hoerner wrote:
> Wouldn't the standard idiom be to actually put the code under the
> if-name, and not make a whole new main() function?
Yes.
The nice thing about the main() function, though, is that you can do the
most basic argument parsing in the if-block. Like so:
On Mon, 19 Sep 2005, beza1e1 wrote:
> I see myself shifting more and more over to the functional kind of
> coding. Could be related to the Haskell, we had to learn in CS. Now i
> was wondering, how other people use Python?
I'm a lot like you. I grew up with java, and learned to write classical
o
Christoph Haas wrote:
> On Tue, Sep 20, 2005 at 02:57:26AM -0500, pt python wrote:
>
>>im moving from the windows world to the linux world and i need to make
>>a python script to see if a service is instaled (ex: apache), if it is
>>running or stoped and to start/stop a service like apache or mysq
Robert Kern wrote:
> Dale Strickland-Clark wrote:
>> A few days ago there was a discussion about which XML parser to use with
>> Python.
>> However, the discussion didn't cover validating parsers, at least, not
>> w3.org XML Schemas.
>>
>> I looked into all the parsers that came up in the discuss
Martin Franklin wrote:
>Christoph Haas wrote:
>
>
>>On Tue, Sep 20, 2005 at 02:57:26AM -0500, pt python wrote:
>>
>>
>>
>>>im moving from the windows world to the linux world and i need to make
>>>a python script to see if a service is instaled (ex: apache), if it is
>>>running or stoped and
Hi. I've been thinking about using smtplib to run a mailing list from my
website.
s = smtplib.SMTP("server")
s.sendmail(fromaddress, toaddresess, msg)
I know that in this instance, the toaddresses variable can be a variable
of type list.
Suppose the list contains well over 100 emails. Would tha
Aloha,
is a pure _python_ implementation of the zlib available?
I have broken zlib streams and need to patch the deocder to
get them back.
Wishing a happy day
LOBI
--
http://mail.python.org/mailman/listinfo/python-list
On 20/09/05, Chris Dewin <[EMAIL PROTECTED]> wrote:
>
> s = smtplib.SMTP("server")
> s.sendmail(fromaddress, toaddresess, msg)
>
> I know that in this instance, the toaddresses variable can be a variable
> of type list.
>
> Suppose the list contains well over 100 emails. Would that create some
>
Dear Pythoneer,
I am writing a python script which inserts or updates a database
from a csv file. i've done the functionality. But i would to like to
show the user the current row being inserted or updated in the screen.
This can be done as follows:
print 'c:\godwin\bl.csv',
for i,row in enume
Hello all python experts.
I have problem and I ask you for help. Probably there is some quite
easy solution, but I can't see it.
I'm trying to perform some action that have to be timeout safe. So
here is the structure of my program:
\\\
def TimeoutHandler():
pri
Godwin Burby wrote:
> print 'c:\godwin\bl.csv',
> for i,row in enumerate(reader):
># inserts or updates the database
>print i,
> This displays on the screen as :
> c:\godwin\bl.csv 1 2 3 4 5 6 7 8
> ^
> But i want it to show the above numbers on the same spot denoted by the
I've written this kind of iterator before, using collections.deque,
which personally I find a little more elegant than the list based
approach:
from collections import deque
def interleave(*iterables):
iters = deque(iter(iterable) for iterable in iterables)
while iters:
it = iters
"Lil" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> I already double checked my C code. It runs perfectly fine in C without
> any errors.
Errr - It runs perfectly fine without *announcing* any errors (while
gleefully urinating all over its memory space).
The programming model for
Chris Dewin wrote:
> Hi. I've been thinking about using smtplib to run a mailing list from my
> website.
>
> s = smtplib.SMTP("server")
> s.sendmail(fromaddress, toaddresess, msg)
>
> I know that in this instance, the toaddresses variable can be a variable
> of type list.
>
> Suppose the list c
On 20/09/05, Daniel Dittmar <[EMAIL PROTECTED]> wrote:
> Chris Dewin wrote:
> > Hi. I've been thinking about using smtplib to run a mailing list from my
> > website.
> >
> > s = smtplib.SMTP("server")
> > s.sendmail(fromaddress, toaddresess, msg)
> >
>
> Not really an answer to your question, bu
"Christian Stapfer" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Check your program for _uninitialized_variables_.
good point.
> (Just a guess: but what other side-effect than
> changing the values of uninitialized variables
> - and the program's timing, of course - might
> the
Hi!
Shed Skin 0.0.2 is up on SourceForge. It should install easily under
Windows 2000/XP and OSX. Please give it a try and let me know if there
are still some problems.
If you would like to help me improve Shed Skin, please send me small
code snippets, preferrably extracted from real-life use cas
Tom Anderson wrote:
> On Mon, 19 Sep 2005, Brett Hoerner wrote:
>
>> Wouldn't the standard idiom be to actually put the code under the
>> if-name, and not make a whole new main() function?
>
> Yes.
>
> The nice thing about the main() function, though, is that you can do the
> most basic argume
Hi!
Shed Skin is an experimental Python-to-C++ compiler. Along with
GNU/Linux, version 0.0.2 should now also install easily under Windows
2000/XP and OSX. Please give it a try and let me know if there are
still some problems.
If you would like to help me improve Shed Skin, please send me small
co
Daniel Dittmar wrote:
> Chris Dewin wrote:
>
>> Hi. I've been thinking about using smtplib to run a mailing list from
>> my website.
>>
>> s = smtplib.SMTP("server")
>> s.sendmail(fromaddress, toaddresess, msg)
>>
>> I know that in this instance, the toaddresses variable can be a variable
>> of t
Chris Dewin wrote:
> Hi. I've been thinking about using smtplib to run a mailing list from my
> website.
>
> s = smtplib.SMTP("server")
> s.sendmail(fromaddress, toaddresess, msg)
>
> I know that in this instance, the toaddresses variable can be a variable
> of type list.
>
> Suppose the list c
> [EMAIL PROTECTED] (p) wrote:
[Timer example snipped]
>p> My question is, why exception is not raised correctly? Could be the
>p> reason that (probably) timer is another thread and there is no
>p> exception in the main thread?
yes, the doc of Timer says it is a subclass of Thread, and there
Please don't post the same question twice with different subjects.
--
Piet van Oostrum <[EMAIL PROTECTED]>
URL: http://www.cs.uu.nl/~piet [PGP 8DAE142BE17999C4]
Private email: [EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
> I think this is unfair. The use of "slash" is a failing of the current
> documentation. If his use is an indication of a nano-tube-narrow
> mindset then so would be the use by the actual documentation writers.
You're right - I missed that somehow, as the original docs talk about
components - w
Is there a way to distinguish if QCheckListItem was checked/unchecked
or clicked?
--
[ Artur M. Piwko : Pipen : AMP29-RIPE : RLU:100918 : From == Trap! : SIG:213B ]
[ 15:36:46 user up 10740 days, 3:31, 1 user, load average: 0.06, 0.06, 0.06 ]
Grain grows best in shit
I've been trying to figure out how to do something that seems
relatively simple, but it's just not coming together for me. I'm
hoping someone will deign to give me a little insight here.
The problem: We have XML documents that use a custom table format that
was designed primarily for typesetting d
Diez B. Roggisch wrote:
>>I think this is unfair. The use of "slash" is a failing of the current
>>documentation. If his use is an indication of a nano-tube-narrow
>>mindset then so would be the use by the actual documentation writers.
>
> You're right - I missed that somehow, as the original docs
Peter Hansen wrote:
> Chris Dewin wrote:
>
>>Hi. I've been thinking about using smtplib to run a mailing list from my
>>website.
>>
>>s = smtplib.SMTP("server")
>>s.sendmail(fromaddress, toaddresess, msg)
>>
>>I know that in this instance, the toaddresses variable can be a variable
>>of type list
Nick Vargish <[EMAIL PROTECTED]> wrote in
news:[EMAIL PROTECTED]:
> I've been trying to figure out how to do something that seems
> relatively simple, but it's just not coming together for me. I'm
> hoping someone will deign to give me a little insight here.
>
> The problem: We have XML document
bruno modulix wrote:
> [EMAIL PROTECTED] wrote:
>
>>What is the best or typical directory structure that
>>allows the easy creation of binary packages
somedir:
test/
test_product.py# Really do include tests
product.py
setup.py
Look at distutils documentation. Also re
Andreas Lobinger wrote:
> Aloha,
>
> is a pure _python_ implementation of the zlib available?
> I have broken zlib streams and need to patch the deocder to
> get them back.
>
> Wishing a happy day
> LOBI
>
Check your zlib version: import zlib; print zlib.ZLIB_VERSION
There were some fixe
I have a win32 service written in Python. It works well. It sends a
report of the status of the machine via email periodically. The one
problem I have is this... while trying to send an email, the script
loops until a send happens and then it breaks. Should it be unable to
send, it sleeps for 10 mi
> try:
>try:
> doSomething1
> excp = 0
>except:
> excp = 1
>#endTry
Note that you can use "else" after "except" for precisely this purpose:
try:
foo()
except:
print 'Exception raised'
else:
print 'No exception raised'
--
Optimism is the faith that leads
I have a win32 service written in Python. It works well. It sends a
report of the status of the machine via email periodically. The one
problem I have is this... while trying to send an email, the script
loops until a send happens and then it breaks. Should it be unable to
send, it sleeps for 10 mi
I ran into a similar issue a couple of months back, the solution on
Windows is to run it as a service. It is very simple, you need Mark
Hammond's Win32 extensions. For path you have to use absolute filepath
for all local files and for network drive use the UNC path i.e.
\\servername\folder-filename
> Steve Holden <[EMAIL PROTECTED]> (SH) wrote:
>SH> To add one final note, if the "fromaddress" belongs to a domain that's
>SH> properly handled by the SMTP server then you aren't relaying (since you are
>SH> a legitimate domain user) so the mails should go through.
And most smtp servers that
You could connect the currentChanged() or clicked() signals in your
QListView to a slot in some other object (perhaps the parent of the
QListView). When the signal is emitted, you can examine the state of
the item passed to the slot.
Hope this helps,
David
--
http://mail.python.org/mailman/list
Max Erickson <[EMAIL PROTECTED]> writes:
> table.parentNode.replaceChild(newtable, table)
I knew it had to be something simple (but not as simple as I am,
apparently :^).
Thanks much, Max, you've saved the rest of my day.
Nick
--
#include/* sigmask (sig.c) 20041028 PUBLIC DOMAIN */
int ma
Hi,
I work in the Accessibility Program Office at Sun Microsystems. I'm
part of a team that is using Python to create a screen reader called
Orca, that'll help blind people (and people with low vision) have
access to the GNOME desktop for Solaris and Linux.
See:
http://cvs.gnome.org/viewcvs/
On Tue, 20 Sep 2005 10:49:13 -0400, rbt wrote:
> I have a win32 service written in Python. It works well. It sends a
> report of the status of the machine via email periodically. The one
> problem I have is this... while trying to send an email, the script
> loops until a send happens and then it
Peter Hansen wrote:
> Diez B. Roggisch wrote:
[...]
>>But I stand by the nano-tube-narrow mind-set of Xah Lee. Besides his
>>tourette syndrome he also is simply unwilling to read documentation if
>>it is not what _he_ expects it to be.
>
>
> It's interesting to note that c.l.p still manages to gi
Hi,
for 2: as far as I know, eclipse must have 'local', or at least
'emulated' local access, so, if you have samba access, it should do what
you want.
for 1... I use it a LOT without any problems for some really big
projects ( with about 2.000 python modules -- not counting the python
install
After recently getting excited about the possibilities that stackless
python has to offer
(http://harkal.sylphis3d.com/2005/08/10/multithreaded-game-scripting-with-stackless-python/)
and then discovering that the most recent version of stackless
available on stackless.com was for python 2.2 I am wo
QOTW: "Python makes data-driven programming easy :-)" -- Kent
"Python rewards abstraction." -- Alex Martelli
As unicode becomes more and more prevalent, the issue of regular
expressions matching unicode character sets occurs more often. A
current thread has advice:
http:
rbt wrote:
>I have a win32 service written in Python. It works well. It sends a
>report of the status of the machine via email periodically. The one
>problem I have is this... while trying to send an email, the script
>loops until a send happens and then it breaks. Should it be unable to
>send, it
BarrySearle wrote:
> # Is this valid (or is excp local to try/except)?
> try:
> try:
>doSomething1
>excp = 0
This block is problematic because excp won;t be set if doSomething1
raises an exception.
> except:
>excp = 1
> #endTry
> if (_excp_): doSomething
I have this code in a wxWidgets program:
class HtmlHintWindow(wx.Frame):
def __init__(self,pos,hint,config):
global _current_hint_window
# Determine the size of the screen
self.screensize = wx.ClientDisplayRect()[2:]
# Calculate the size of the hint ;-)
rbt wrote:
> I have a win32 service written in Python. It works well. It sends a
> report of the status of the machine via email periodically. The one
> problem I have is this... while trying to send an email, the script
> loops until a send happens and then it breaks. Should it be unable to
> send
In the darkest hour on 20 Sep 2005 08:07:47 -0700,
David Boddie <[EMAIL PROTECTED]> screamed:
> You could connect the currentChanged() or clicked() signals in your
> QListView to a slot in some other object (perhaps the parent of the
> QListView). When the signal is emitted, you can examine the sta
hi;
I just want to test that a given website is up or not from a python
script. I thought of using wget as an os command. Any better ideas?
thanks
moe smadi
--
http://mail.python.org/mailman/listinfo/python-list
M.N.A.Smadi wrote:
>hi;
>
>I just want to test that a given website is up or not from a python
>script. I thought of using wget as an os command. Any better ideas?
>
>
urllib
http://www.python.org/doc/current/lib/module-urllib.html
If you only want to test if the HTTP port is open or not:
Hi,
I suspect this is a bug with AMK's Crypto package from
http://www.amk.ca/python/code/crypto , but want to
check to see if I'm being dumb before posting a bug
report.
I'm looking at using this library and to familiarise myself writing
small tests with each of the ciphers. When I hit Crypto.Ci
On Tue, 20 Sep 2005 16:08:19 +0100, Michael Sparks <[EMAIL PROTECTED]> wrote:
>Hi,
>
>
>I suspect this is a bug with AMK's Crypto package from
>http://www.amk.ca/python/code/crypto , but want to
>check to see if I'm being dumb before posting a bug
>report.
>
>I'm looking at using this library and t
>The program prints out "point 1" but it does not print "point 2". What
>am I missing?
>
>
Sorry from all. I should have been looked at the processor before I
posted. There is no exception. It was an infinite loop inside the try
block, but it was called from an event handler. I did not notice
"Jordan Rastrick" <[EMAIL PROTECTED]> wrote:
> I've written this kind of iterator before, using collections.deque,
> which personally I find a little more elegant than the list based
> approach:
Nice, that's *much* more elegant and simple ! Here's the class-based version
with append; note that
i
I'm slowly getting tired maintaining py2exe. It is far from perfect,
although it has interesting features (I would say).
The problem, apart from the work, is that it is good enough for me - I
can do everything that I need with it. But I assume I use far less
libaries than other Python programmer
On Tuesday 20 September 2005 10:22, Rich Burridge wrote:
> [lots of well-written and logical information about a proposed
> vendor-packages directory snipped]
> Is this something that would be considered for a future Python
> release?
+1 to that from me... it looks like good idea - have you submi
Ed Hotchkiss wrote:
> No worries, I apologize for my outburst. I will check out the viability
> of using an SSH module, or using pyCrypto or something to encrypt the data.
>
> Here's my mission: simple P2P class with encryption of whatever type of
> file is being sent, and authentication via encr
On Tue, 20 Sep 2005 08:50:44 -0700, [EMAIL PROTECTED] wrote:
> After recently getting excited about the possibilities that stackless
> python has to offer
> (http://harkal.sylphis3d.com/2005/08/10/multithreaded-game-scripting-with-stackless-python/)
> and then discovering that the most recent vers
Hi,
I have some questions concerning the global interpreter lock:
I am working with Windows XP Professional Version 5.1, Python version 2.4.1
and Microsoft Visual C++.Net Version 7.1.
>From Python I call a function from a C++ dll using
calldll.call_foreign_function. This C++ function does a callb
Rich:
You made it to the States, then? How ironic, I've just been working in
VA for nine years, but recently returned to Scotland and ended up living
in Linlithgow, known to most Sun long-timers.
Hope mp is still providing good service.
Rich Burridge wrote:
> Hi,
>
> I work in the Accessibili
Hi all,
I am trying to figure out a way to handle exceptions for error code 4xx , and 5xx 's . I came to know that these can be handled using OpenerDirector class and urllib2 module in Python. I could'nt find the right syntax or examples of how to use these Handlers.
Any help is greatly a
hi;
if i want to send a mail message using the "mail" client on a machine
that has smtp protocol is there an easy way (i.e. like bash where you
would just type mail -s SUBJECT message RECIPIENT) to do it from a
python script?
thanks
moe smadi
--
http://mail.python.org/mailman/listinfo/python-l
Fabio Zadrozny wrote:
>Hi,
>
>for 2: as far as I know, eclipse must have 'local', or at least
>'emulated' local access, so, if you have samba access, it should do what
>you want.
>
>for 1... I use it a LOT without any problems for some really big
>projects ( with about 2.000 python modules -- n
Jp Calderone wrote:
> On Tue, 20 Sep 2005 16:08:19 +0100, Michael Sparks <[EMAIL PROTECTED]>
> wrote:
>>Hi,
>>
>>
>>I suspect this is a bug with AMK's Crypto package from
>>http://www.amk.ca/python/code/crypto , but want to
>>check to see if I'm being dumb before posting a bug
>>report.
>>
>>I'm l
On 20/09/05, M.N.A.Smadi <[EMAIL PROTECTED]> wrote:
> hi;
> if i want to send a mail message using the "mail" client on a machine
> that has smtp protocol is there an easy way (i.e. like bash where you
> would just type mail -s SUBJECT message RECIPIENT) to do it from a
> python script?
Any mail c
Hello,
is there a python lib (preferably in the std lib) to monitor a directory for
changes (adding / deleting files) for Linux 2.6?
Thanks,
Florian
--
http://mail.python.org/mailman/listinfo/python-list
"Rich Burridge" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> I work in the Accessibility Program Office at Sun Microsystems. I'm
> part of a team that is using Python to create a screen reader called
> Orca, that'll help blind people (and people with low vision) have
> access to
[EMAIL PROTECTED] wrote:
> Dear all,
>
> Can anyone point me to a resource that describes the best way of
> organising a python project? My project (gausssum.sf.net) is based
> around a class, and has a GUI that allows 'easy-access' to the methods
> of the class. What is the best or typical direc
Florian Lindner wrote:
> Hello,
> is there a python lib (preferably in the std lib) to monitor a directory for
> changes (adding / deleting files) for Linux 2.6?
There isn't, but if you don't want to use dnotify/inotify, it is trivial to
implement: use a timer and check the listdir() return value.
SPE ships with a debugger as well: http://pythonide.stani.be It's free
& open source.
Johnny Lee wrote:
> Hi,
>I've met a problem to understand the code at hand. And I wonder
> whether there is any useful tools to provide me a way of step debug?
> Just like the F10 in VC...
>
> Thanks for you
What about PyInstaller that was announced the other day? The feature
list looks great, and it appears the developers intend to maintain and
enhance the program indefinitely.
http://groups.google.com/group/comp.lang.python/browse_thread/thread/b487056b7b1f99bc/583da383c1749d9f?q=ANN&rnum=1&hl=en#58
On Tuesday 20 September 2005 11:43, Steve M wrote:
> What about PyInstaller that was announced the other day? The feature
> list looks great, and it appears the developers intend to maintain and
> enhance the program indefinitely.
...
>
> http://pyinstaller.hpcf.upr.edu/pyinstaller
That's one shor
Mark Dufour wrote:
> Shed Skin is an experimental Python-to-C++ compiler. Along with
> GNU/Linux, version 0.0.2 should now also install easily under Windows
> 2000/XP and OSX. Please give it a try and let me know if there are
> still some problems.
ss.py writes a make file, but unfortunately doesn
Petr Prikryl wrote:
> Would this break any existing code?
Yes, it would break code which currently contains
# -*- coding: utf-8 -*-
and also contains byte string literals.
Notice that there is an alternative form of the UTF-8
declaration: if the Python file starts with an UTF-8
signature (BOM),
1 - 100 of 165 matches
Mail list logo