Re: Script for generating WSDL

2005-08-02 Thread pythonUser_07
Is that possible? In order to access a web service it seems like you need to know how it is defined (IE through the WSDL) -- http://mail.python.org/mailman/listinfo/python-list

Re: Freeze

2005-07-28 Thread pythonUser_07
What happens when you take a copy of python23.dll and put it in the path on that machine? Does the program run? If so, (and I am not familiar with freeze) it seems freeze did not put the dll into the .exe file. -- http://mail.python.org/mailman/listinfo/python-list

Re: Issues With Threading

2005-07-13 Thread pythonUser_07
This is a complete shot in the dark but you might want to sys.stdout.flush() between print calls? -- http://mail.python.org/mailman/listinfo/python-list

Re: Python Win32 and Condor

2005-06-03 Thread pythonUser_07
It's been a while since I've experimented with Condor, but it looks like 'Access is denied.', You might want to figure out what user the condor service is running as and log in as that user and try to run your code. -- http://mail.python.org/mailman/listinfo/python-list

Re: goto statement

2005-04-21 Thread pythonUser_07
Hi, Have you tried the triple quote comment technique? I am assuming you want to skip some code for the time being. Here is an example print hello world ''' COMMENT OUT FOR NOW someFunction() someOtherFunction() ''' print goodbye world This means that you have only two locations to remove the

Re: Programming Language for Systems Administrator

2005-04-13 Thread pythonUser_07
Python is great, but having much admin type experience, I've found python to be less than Ideal when dealing with system calls and standard Input Ouput. For example, I've written complex tools that use perforce, I've taken advantage of both regular IO and the perforce marshalled IO. Under heavy

jython question (interesting behavior)

2005-03-03 Thread pythonUser_07
Is this the correct place to post a jython question? I posted the following in the jython group, but I figured I'd post here too: _ I am assuming that the PythonInterpreter environment is not a unique environment from within a jvm. Here is some pseudo code

Re: jython question (interesting behavior)

2005-03-03 Thread pythonUser_07
Hmm, now that I think about this, maybe it's not so crazy. It would be the equivalent of modifying a static variable in the same JVM. Sorry to bother. -- http://mail.python.org/mailman/listinfo/python-list

Whats up with re module vs pre

2005-02-17 Thread pythonUser_07
This is a very generic observation as I don't have a lot of specifics with me right now. I have noticed over the past two years that the python re module is somewhat unreliable. At the suggestion of someone quite some time ago, I started to use the deprecated pre module. import pre as re. All my

Re: [Fwd: Re: [Uuu-devel] languages] -- Why Python

2005-02-17 Thread pythonUser_07
I see your point. Consider points 2 and 3 a nice side effect. The language I favor actually ties into the environment I am working in: Python for rapid prototyping, java for larger projects where the eclipse IDE comes in very handy. -- http://mail.python.org/mailman/listinfo/python-list