George Neuner DESERVES his FREEDOM OF SPEECH.
Freedom of speech dousn't guarantee an audience
--
http://mail.python.org/mailman/listinfo/python-list
delete C:\WINDOWS\system32\python24.dll
- run the "repair" functionality of the python.org installer (you can
either do this from "Start | Settings | Control Panel | Add/Remove
Programs" or by just running the .msi file again
Then try running python again.
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
estate.com/ActivePython/show_bug.cgi?id=41083
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
nd re-installed.
>
> *sigh*
As Steve said, uninstalling ActivePython 2.4 will leave your extensions
alone and then installing ActivePython 2.4.1 will install in the same
proper places so that all your extensions should just work.
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/ma
logging.basicConfig()
else:
logging.Logger.manager.emittedNoHandlerWarning = True
mylib.func()
--
$ python myscript.py
$ python myscript.py -v
WARNING:mylib:don't go near the river
ERROR:mylib:I'm drowning!
hackily yours,
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
MS -- and Sun -- are calling
AMD64).
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
ing.
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
kit/en-us/regentry/34995.asp
Cheers,
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
rc
or to open Explorer in that dir:
go -o src
or in another "tagged" dir:
go ~ # open in my home dir
DQSD is a fantastic tool for speeding up launching other things, too:
mainly Google searches.
Cheers,
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
ndispensible switching to any
> other editor -- I wonder if Eclipse/PyDev has it?
Komodo has that too -- we call it "word completion".
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
ACHINE\Software\Python
>
> If you need to know how to read the registry from Python: please install
> the python win32 extensions (or use ActivePython).
Actually you don't need the PyWin32 extensions to read the Windows
registry since the _winreg module was added to the Python co
:
http://aspn.activestate.com/ASPN/docs/ActivePython/2.4/installnotes.html#install_logging
The same instructions will work for the python.org MSI as well.
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
[Paul Boddie wrote]
> Shouldn't you have something nice to say about Komodo instead, however?
> ;-)
Yah, I was just reminding Aaron of his fine-print legal requirements to
evermore only be able to extol the virtues of Komodo. Muuuwahahaha! :)
Trent
--
Trent Mick
[EMAIL PROTECTE
though (yeah!) and I'm hopeful that in the
not too distant future I'll be able to include SSL in ActivePython (and
other products I work on here at ActiveState).
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
y may have a real bastion mode, but
> Python doesn't.
Nah, the Try Ruby thing is mostly faking it (I believe) rather than
running an actually Ruby interactive session ("bastion'ed" or not).
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
Never got to the next prompt.
Punted on continued/multi-line statements maybe?
> Looking at
> the Javascript, it appears to be some sort of Ajaxian thing...
Yup.
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
m that you'd end up accessing Foo when you indeed
think you are accessing Bar, or vice versa. Just try this:
>>> my_pseudo_hash_code = 1
>>> my_dict = {my_pseudo_hash_code:"gnarf",
my_pseudo_hash_code:"snarf"}
>>> print my_dict
Mick.
--
http://mail.python.org/mailman/listinfo/python-list
are None, the function should return None.
> * If at least one value is True, the function should return True.
> * Otherwise, the function should return False.
Try:
>>> max(lst)
Mick.
--
http://mail.python.org/mailman/listinfo/python-list
this:
>>> def max_of_two_with_None_less_than_any_other_object(e1, e2):
... if e1 == None:
... return e2
... elif e2 == None:
... return e1
... else:
... return max(e1, e2)
>>> reduce(max_of_two_with_None_less_than_any_other_object, lst)
Mick.
--
http://mail.python.org/mailman/listinfo/python-list
return result
Or like the Melmacians would do it:
>>> def boolgen(items):
... result = None
... for item in items:
... if result:
... raise StopIteration
... elif item is not None:
... result = item
... yield result
&g
Fahri Basegmez wrote:
> reduce(lambda x, y: x or y, lst)
This doesn't solve the OPs problem since
>>> reduce(lambda x, y: x or y, [False, None])
returns None instead of False.
Mick.
--
http://mail.python.org/mailman/listinfo/python-list
before, but have managed to work around the
problems. I think it is a good feature, but I wouldn't have the time to
shepherd the patch.
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
;; and
- a snapshot of the Python FAQs, HOWTOs and PEPs.
An online version of the docs can be found here:
http://aspn.activestate.com/ASPN/docs/ActivePython/2.4/welcome.html
Thanks, and enjoy!
Trent, Python Tech Lead
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
2 extensions (which you already have if you have
ActivePython installed).
Alternatively you could write your own little C extension to call this
Window API function... but you didn't want to do that. You can also call
this WIndows API function (in the shell32.dll) with the Python "ctypes
actually os.environ['APPDATA'] ;-)
Note that the APPDATA environment variable is only there on *some* of
the Windows flavours. It is there on Win2k and WinXP. It is not there on
WinME. Dunno about Win95, Win98, WinNT... but you may not care about
those old guys.
Cheers,
Trent
--
Tre
er platforms (linux-x86_64, linux-ia64, win64-ia64,
win64-x64, 64-bit AIX).
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
e? Run:
uname -a
Do you get an error doing the following minimal Tkinter test:
>>> import Tkinter
>>> Tkinter.Tk()
Cheers,
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
Am I doing something
> wrong here? Is there a better way to create/modify sparse files?
test_largefile.py in the Python test suite does this kind of thing and
doesn't take very long for me to run on Linux (SuSE 9.0 box).
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
ave problems with the available patch.exe binaries
hanging or crashing occassionally on Windows.
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
ug in the Python 2.4 installer not setting the
proper file associations. What installer package did you use?
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
htly less smart-ass-y:
def get_not_really_minimal_regex(*regexes):
return "(" + "|".join(regexes) + ")"
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
thread:
http://mail.python.org/pipermail/python-list/2005-August/296007.html
What association (if any) does your Python MSI setup?
Cheers,
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
verCity:
http://silvercity.sourceforge.net/
As a CGI script:
http://www.sweetapp.com/cgi-bin/cgi-styler-form.py
Cheers,
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
ActivePython binary installers for
HP-UX at ActiveState.
http://www.activestate.com/Products/ActivePython/
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
I that experienced with it. Just an FYI.
http://starship.python.net/crew/theller/py2exe/
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
to write up your experiences with it: write a tutorial or
HOWTO or improvements of the core logging docs. Currently the logging
package looks fairly uninviting/untractable to new users.
Cheers
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
[Giovanni Bajo wrote]
> Trent Mick wrote:
>
> > I notice that the release notes for py2exe 0.6.1 mention that it
> > finally *can* make a single file executable. I'm not involved in
> > developing it
> > nor am I that experienced with it. Just an FYI.
>
&g
all the implementation) can comment on these.
Unfortunately backwards-compat might restrict some cleanups to the
package, but perhaps not too much. I did a poor job of keeping up with
the package after I laid out an initial design, er copied an initial
design from Java's log4j package (and I'm not even a Java guy). :(
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
atastrophic will happen with a weird logging configuration --
probably just more log messages that you'd want.
> It was probably the log4j roots that provided the non-PEP 8 naming.
Definitely.
> I suspect the naming could be improved while providing backward
> compatibility aliases and deprecating those names.
Do you mean naming like "makeLogRecord" etc? I thought PEP 8 said
camelCase (or whatever it is called) was okay?
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
ernals as well?
Perhaps because of the timing.
> If I remember
> correctly, it was more-or-less written for inclusion in the core.
Yah. It was added before Guido more clearly stated that he thought
modules should have a successful life outside the core before being
accepted in the stdlib.
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
There are also the following install options:
- ActivePython:
http://www.activestate.com/Products/ActivePython/
(disclaimer: I make this distro)
- MacPython:
http://undefined.org/python/#python
by Bob Ippolito
- fink (similar in spirit to the darwinports project) also has a
ause surprises. I.e. I write code that uses the new thing, test it with
my 2.4.2 install, think that is works with 2.4.* and say so when I
distribute it.
Maybe that is okay. Just asking here because I don't keep up with
Python changes -- or sentiment on how to handle this kind of thing
backported the documentation bit that marked the keyword
> parameter change to basicConfig() as happening in 2.4. I didn't change any
> code.
Duh. Sorry.
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
Komodo(*):
Using the Python Remote Debugger
http://aspn.activestate.com/ASPN/docs/Komodo/3.1/komodo-doc-debugpython.html#Using_the_Python_Remote_Debugger
You can get a trial here:
www.activestate.com/Komodo/Trial
Cheers,
Trent
(*) Disclaimer: I work on Komodo.
--
Trent Mick
ove might suffice
Note that on some older Windows flavours -- not sure exactly which --
the APPDATA env. var. might not be defined.
Also note that Windows app guidelines encourage you to have an
additional vendor/owner directory level before the app name. So:
%APPDATA%\\Bombz
I have a litt
p
collection of the full ActivePython documentation set. Linux
users of applications such as xCHM might find this useful.
These packages are available from:
ftp://ftp.activestate.com/ActivePython/etc/
On behalf of the team at ActiveState,
Thanks, and enjoy!
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
32-ix86/SystemFolder: pywintypes24_d.pdb
Cheers,
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
[Peter Hansen wrote]
> Python has never (as far as I know) set up the PATH during
> installation.
I think that's true of the python.org installer. ActivePython will add
the install directory to your PATH.
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/list
ight find this useful.
These packages are available from:
ftp://ftp.activestate.com/ActivePython/etc/
Thanks, and enjoy!
Trent (and the hard-working elves at ActiveState)
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
/docs/ActivePython/2.4/installnotes.html#install_silent
Cheers,
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
hon 2.3 and 2.4
installers and both installs are still working fine.
Cheers,
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
years ago, we were able to provide
substantially more currently relevant recipes and information in
roughtly the same amount of space.
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
this translation is not done.
Also, any reason you are not just using the hexdigest() method in the
md5 module?
Cheers,
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
ng for this thread so I'm not
sure if this is what is being looked for.
Cheers,
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
.activestate.com/ActivePython/etc/
On behalf of the team at ActiveState,
Thanks, and enjoy!
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
[Baza wrote]
> Am I right in thinking that >>>print "\a" should sound the system, 'bell'?
It works on the shell on Windows for me (WinXP).
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
#x27;t know of any command called "\a" to run.
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
sees '\a'. I suppose that one could consider that a bug. If I were an
IDLE developer/maintainer, I don't think I'd rate that as a very high
prioirty bug though. :)
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
installation -- which you'll already have if you use ActivePython or
which you can install separately from here:
http://sourceforge.net/project/showfiles.php?group_id=78018
Cheers,
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
x27;m not sure if modifying that metadata works the same way as updating
version metadata. If so, verstamp.py here might help you get started:
http://cvs.sourceforge.net/viewcvs.py/pywin32/pywin32/win32/scripts/VersionStamp/
Cheers,
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.p
subprocess (new module in Python 2.4)
os.system
os.popen, os.popen2, os.popen3, os.popen4
Note that you can't just run a Python *function* in a separate process
directly. You'll have to have some way to call:
python.exe your_script.py
such that your function gets called.
Chee
/pep-0008.html
Cheers,
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
the
os.WIF* methods).
It would be helpful if you could log a bug for this in Komodo's bugdb so
we can track this and make sure it doesn't get lost:
http://bugs.activestate.com/Komodo
Cheers,
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
Save that as geturl.py and try running:
python geturl.py http://example.com/downloads/bigfile.zip
Cheers,
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
z={ 'PC2': ['02:02:02:02:02:02', '192.168.0.2', '200'],
'PC3': ['03:03:03:03:03:03', '192.168.0.3', '200'],
'PC1': ['01:01:01:01:01:01', '192.168.0.1', '200'] }
My solution:
z=raw_input("Enter Host, Mac, ip and time")
t=z.split()
t[0]=z[1:]
for key in dic:
if t[2] in dic[key]:
@Peter Otten:
I have lists for keys. What I want is if host already exists it would overwrite
otherwise add to database. And if host doesn't exist it will first add this
host to database and then compare its IP with IPs of rest of hosts. If ip
matches with any of the other hosts, it will delete
I have programming course and trying to learn things. This is of no human use.
I am just following exercises. Just have to do steps as asked.
--
https://mail.python.org/mailman/listinfo/python-list
ThanK you. It solved my problem.
Can someone tell me how can i print particular value inside list of key.
I know how to print J['PC2'][1] means will print IP. but I want the user to
input some element and I will print element just before that element.
e.g. if user inputs 192.168.0.2, program wil
I am using Pydev 2.8 on Eclipse IDE. It is printing some values that haven't
been printed with print command. How to deal with this problem?
--
https://mail.python.org/mailman/listinfo/python-list
Thanks for reply.
I am running file via ctrl+F11 and seeing output on pyDev Console. My code has
got nested dictionaries, lists and tuples. What you want to see?
--
https://mail.python.org/mailman/listinfo/python-list
Distributing the Python Windows debug build libs.
http://mail.python.org/pipermail/python-dev/2005-November/057896.html
http://mail.python.org/pipermail/python-dev/2005-December/058446.html
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
ging. So, Komodo is
written in: XML, JavaScript, C++, Python, CSS, C, Perl, and Tcl.
Cheers,
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
which go`";
if test -e "$go_is_on_path"; then
export GO_SHELL_SCRIPT=$HOME/.__tmp_go.sh;
python `\which go` $*;
if [ -f $GO_SHELL_SCRIPT ]; then
source $GO_SHELL_SCRIPT;
fi;
else
echo "ERROR:
p/client.py in your Komodo install) that
Shane attached to that bug to your Komodo installation.
Thanks for mentioning the bug.
Cheers,
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
Cheers,
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
ot; value to "FuzzyWuzzyWuzzaBear" to
effectively disable usage of the registry for sys.path building by
that pythonXY.dll.
Cheers,
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
e request on SF (or whatever they call it),
or give it a little bit of time to see if it fixes itself.
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
with COM code last time I tried.
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
which.which("nothere")
Traceback (most recent call last):
File "", line 1, in ?
File "C:\Python24\which.py", line 248, in which
raise WhichError("Could not find '%s' on the path." % command)
which.WhichError: Could not find 'nothere' on the path.
http://trentm.com/projects/which/
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
7;m focussed on Komodo 4.0 for now.
For others, unfortunately ActivePython 2.5 will probably not be ready
until mid-November.
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
Christopher Taylor wrote:
> RHEL comes with Python2.3 installed. A program I need to install
> requires Python2.4
ActivePython has a 2.4 build for Linux/x86_64:
http://www.activestate.com/Products/ActivePython/
Cheers,
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/m
t sure if the python.org Windows installer has that
functionality (it probably does). Just try invoking the .msi file again.
And, as Neil said, you can just reinstall.
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
he breakpoint
would not have worked if "bar.py" had been imported from another
location on my sys.path.
Note: this might be better discussed on the komodo-discuss mailing list.
(http://listserv.activestate.com/mailman/mysubs)
Cheers,
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
hon-2.4.2.10-win32-x86.msi 19,053 KB
ActivePython-2.4.3.12-win32-x86.msi 19,237 KB
Note that the Windows *64-bit* builds are smaller (around 15MB) because
they do not include PyWin32.
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
Tom Del Rosso wrote:
> Can I ask you about alternative environments? How do Active Python and IDLE
> from python.org compare?
Both ActivePython and the Python installers from python.org install
IDLE. They should not differ at all (AFAIK).
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
IDEs and editors. Also check out:
http://wiki.python.org/moin/IntegratedDevelopmentEnvironments
http://wiki.python.org/moin/PythonEditors
ActiveState has a Python IDE called Komodo
http://www.activestate.com/Products/Komodo/
which I work on (so I'm biased :).
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
beta 1 is out now and beta 2
should be released later this week). Try it out:
http://www.activestate.com/products/komodo/beta.plex#features
Cheers,
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
hg wrote:
> Hi,
>
> Can one tell me what the status of this project is ?. I did google ...
> but not much out there.
PyXPCOM source is in the main Mozilla CVS tree. It is being maintained by Mark
Hammond (the original developer of the extension). There isn't a lot of
activity on it, I think, be
ity for Firefox that your activex
component does for IE? Yes, xpcom and pyxpcom are quite stable, however
putting together a Firefox extension that gets PyXPCOM itself up and running
in a client's Firefox install will be quite challenging.
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mai
hg wrote:
> Trent Mick wrote:
>>> My need is as follows: I have developed an activex component to access a
>>> smart card on the client side / do some web site logon.
>>>
>>> Are xpcom / pyxpcom advanced/stable enough for such an implementation
>>>
l
ActivePython documentation set. Linux users of applications such as
xCHM might find this useful. This package is installed by default on
Windows.
These packages are available from:
ftp://ftp.activestate.com/ActivePython/etc/
Thanks, and enjoy!
Trent, Python Tech Lead
--
Trent Mick
TrentM at ActiveState.com
--
http://mail.python.org/mailman/listinfo/python-list
's Python builds do. We are currently
going through the legal hurdles so that we can include those. I expect
that by or before the Python 2.5 timeframe we'll have _ssl in
ActivePython.
...
Sincerely,
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
t give you an opinion on it
relative to other tools out there.
Cheers,
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
rive?
> Is there an install log file you could locate?
As "David" mentioned on activepython@listserv.activestate.com, could
this be due to an anti-virus program aborting the install on you?
You could generate an install log to see if that yields some clues:
http://aspn.activesta
y leak, and I
> need the process modules timed "wait(n)" method (or write my own).
Can you post a little snippet and show the exact traceback you are
getting? I suspect the problem might stem from a stupid buglet in the
latest process.py available from my starship pages because I'v
export regulations. For SSL support in an ActivePython
installation you'd have to add the _ssl.pyd extension separately (either
building it yourself, or finding an available binary).
Sincerely,
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
There will be no compatibility issue with Komodo, at least. Nor should
there be with the others, as Martin mentioned.
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
> dependent.
http://starship.python.net/crew/tmick/#which
I have a 'which' implementation that looks up a command-line program
name in the same way that Windows' process launching does at the shell
(when on Windows) and in the same way the usual 'which' executabl
x. this is on an XP and W2K box.
I suspect that you mean the *Pythonwin IDE* that is part of the *PyWin32
extensions* that comes as a standard part of *ActivePython* (a distro of
Python).
I can't reproduce this problem on my machine. I'm not sure how there
could be crosstalk between Pythonw
lcome.html
Thanks, and enjoy!
Trent, Python Tech Lead
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
1 - 100 of 204 matches
Mail list logo