Re: starting Active Python 2.0 in Linux

2001-01-04 Thread Trent Mick
al/ActivePython-2.0/bin" in the front of your path. If you use the BASH shell then you can do this by putting this line in your ~/.bashrc file: export PATH=/usr/local/ActivePython-2.0/bin:$PATH Cheers, Trent -- Trent Mick [EMAIL PROTECTED] _

Re: Regular Expression in Python 2.0

2001-01-31 Thread Trent Mick
d be able to give you a more authoritative response. Cheers, Trent -- Trent Mick [EMAIL PROTECTED] ___ ActivePython mailing list [EMAIL PROTECTED] http://listserv.ActiveState.com/mailman/listinfo/activepython

Re: Regular Expression in Python 2.0

2001-01-31 Thread Trent Mick
> #import re # comment out this line - new regexp (implicitly loads "sre" I > think) > import pre # the python 1.5 implementation of regexp > > re = pre # Avoids the need of changing existing code or that can be shortened to import pre as re Cheers, Tre

Re: Is site.py loaded at start up?

2001-02-06 Thread Trent Mick
right", "credits" or "license" for more information. >>> Note that the "-S" option can be used to tell python to skip site.py on startup. Cheers, Trent -- Trent Mick [EMAIL PROTECTED] ___ ActivePython mailing list [EMAIL PROTECTED] http://listserv.ActiveState.com/mailman/listinfo/activepython

Re: Is site.py loaded at start up?

2001-02-07 Thread Trent Mick
#x27;: , 'os .path': , 'os': , 'exceptions': , '__main__': , 'ntpath': , 'nt': , 'sys': , '__builtin__': , 's ite': , 'signal': , 'UserDict': , 'stat': } You can see that the 'sys' and 'site' modules (among others) have been loaded. >>> import site >>> dir() ['__builtins__', '__doc__', '__name__', 'site', 'sys'] Now we have a reference to the site modules in the __main__ namespace. >>> dir(site) ['_Printer', '__builtin__', '__builtins__', '__doc__', '__file__', '__name__', ' _test', 'addpackage', 'addsitedir', 'encoding', 'here', 'makepath', 'os', 'prefix', 'prefixes', 'sitedir', 'sitedirs', 'sys'] Cheers, Trent -- Trent Mick [EMAIL PROTECTED] ___ ActivePython mailing list [EMAIL PROTECTED] http://listserv.ActiveState.com/mailman/listinfo/activepython

Re: Is site.py loaded at start up?

2001-02-07 Thread Trent Mick
>> mylist = [1,2,3] >>> dir(mylist) ['append', 'count', 'extend', 'index', 'insert', 'pop', 'remove', 'reverse', 'sort'] >>> &

Re: Is site.py loaded at start up?

2001-02-08 Thread Trent Mick
n a non-interactive script it works exactly the same as with the interactive shell: you have to explicitly "import" the modules you want to use. Cheers, Trent -- Trent Mick [EMAIL PROTECTED] ___ ActivePython mailing list [EMAIL PROTECTED] http://listserv.ActiveState.com/mailman/listinfo/activepython

Re: A/S Windows build with Tkinter/Tix

2001-02-10 Thread Trent Mick
rough some script API supported by MS. I don't know if that exists. Cheers, Trent -- Trent Mick [EMAIL PROTECTED] ___ ActivePython mailing list [EMAIL PROTECTED] http://listserv.ActiveState.com/mailman/listinfo/activepython

Re: shlwapi.dll support?

2001-03-09 Thread Trent Mick
::API module? Hello Dave, Look at this file: win32comext\shell\test\testShell.py You should have this in your ActivePython distribution. It contains an example using SHGetSpecialFolderPath(). Cheers, Trent -- Trent Mick [EMAIL PROTECTED] ___

Re: compiling ActivePython 2.0.3 Linux 7.0

2001-03-26 Thread Trent Mick
; > make[1]: *** [getplatform.o] Error 1 > make[1]: Leaving directory > `/develop/ActivePython-2.0.0-203/src/Core/Python' > make: *** [Python] Error 2 > > RedHat 7.0 does come with gcc 2.96 , also inside the > ../Include/pyport.h:390 a LON

Re: COM multiple interfaces

2001-05-28 Thread Trent Mick
on your class can either take a single interface or a list of interfaces. So, if you have some thing like class MyCOMServer: _com_interfaces_ = [MyInterface1, MyInterface2] #... the rest ... that should just work. Cheers, Trent -- Trent Mick [E

Re: one question about this mailing list

2001-06-21 Thread Trent Mick
page where you can (1) get your password emailed to you <> and (2) unsubscribe from the list. Cheers, Trent -- Trent Mick [EMAIL PROTECTED] ___ ActivePython mailing list [EMAIL PROTECTED] http://listserv.ActiveState.com/mailman/listinfo/activepython

Re: Mysterious delay in Python module loading

2002-01-08 Thread Trent Mick
robably a complete red herring > I am inclined to agree. Cheers, Trent -- Trent Mick [EMAIL PROTECTED] ___ ActivePython mailing list [EMAIL PROTECTED] http://listserv.ActiveState.com/mailman/listinfo/activepython

Re: Mysterious delay in Python module loading

2002-01-08 Thread Trent Mick
On Tue, Jan 08, 2002 at 02:26:04PM -0500, Bob Kline wrote: > On Tue, 8 Jan 2002, Trent Mick wrote: > > > > 2. What other tools or procedures can I use to delve further into > > >this problem to track down its cause myself? > > > > You could look at the Pyt

Re: Instance manipulation

2002-01-10 Thread Trent Mick
reference to the Parent instance class Child(Parent): def __init__(self, parent) parent.button.config(state=DISABLED) app = Parent() I hope that that help. I am not sure if that is what you mean. Cheers, Trent -- Trent Mick [EMAIL PROTECTED]

Re: How can handle exception?

2002-01-10 Thread Trent Mick
> try: > # your code that's failing > except: > # what you want to do when it fails Or better: try: # your code that's failing except socket.error:# only catch that specific kind of error # what you want to do when it fails Though I am sure t

Important: privacy concern in the ActivePython on Windows

2002-01-17 Thread Trent Mick
problem. Note that all current ActivePython releases are affected. Subsequent ActivePython releases will include Mark's fix. Sincerely, Trent -- Trent Mick ActivePython maintainer [EMAIL PROTECTED] ___ ActivePython mailing list [EMAIL PROTECTED]

Re: Active Python 2.1.1 and TCL/Expect?

2002-01-28 Thread Trent Mick
Is a port of TCL/Expect available? > Can you recommend any Python library that would > be helpful? I found this site: ExpectPy http://expectpy.sourceforge.net/ http://expectpy.sourceforge.net/1.8.3/ Perhaps that is what you want. Cheers, Trent -- Tre

Re: ActivePython 2.2 release... when

2002-01-28 Thread Trent Mick
On Wed, Jan 23, 2002 at 12:05:36AM -0500, Kristin Spinn and Damien Morton wrote: > When will activestate release a Python 2.2 package? We hope very soon now. We will make an announcement email on this list when it is ready. I apologize for the long delay. Trent -- Trent Mick [EMAIL PROTEC

Re: beginner's doubt

2002-01-28 Thread Trent Mick
'__file__', '__name__', ' __version__', '_pickler', 'ast2list', 'ast2tuple', 'compileast', 'expr', 'isexpr ', 'issuite', 'sequence2ast', 'suite', 'tuple2ast'] Cheers, Trent -- Trent Mick [EMAIL PROTECTED] ___ ActivePython mailing list [EMAIL PROTECTED] http://listserv.ActiveState.com/mailman/listinfo/activepython

Re: Re: COM server implementing given Interface by Volker Siepmann

2002-01-28 Thread Trent Mick
nking the makepy on the vb > dll would help and i could implement that interface, > but this doesn't seem correct. > > i think seeing how Volker implemented his solution may > help get me on my way. Craig, Matthew, You might want to try on [EMAIL PROTECTED] There are some PyW

Re: ODBC paramtype?

2002-02-21 Thread Trent Mick
crosoft.com/library/default.asp?url=/library/en-us/odbc/htm/vfpodbcsupportedodbcapi.asp As well, you could also try to ask on [EMAIL PROTECTED] where some people with the same experience might be able to help you. Cheers, Trent -- Trent Mick [EMAIL PROTECTED] __

Re: Serial Port Communication - Test??

2002-03-27 Thread Trent Mick
one try to use that? I am able to open the port of Modem and write to it, but >I dont get any replies. Should I be connected to get replies?? > > Thanks, > > -V. > > > > - > Do You Yahoo!? > Yahoo! Movies - coverage o

Re: ActivePython 2.2 released!

2002-04-08 Thread Trent Mick
> > -- > Bob Kline > mailto:[EMAIL PROTECTED] > http://www.rksystems.com > > ___ > ActivePython mailing list > [EMAIL PROTECTED] > To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs -- Trent Mick [EMAIL PROTECTED] ___ ActivePython mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Re: Threading question

2002-04-10 Thread Trent Mick
s probably better discussed on either [EMAIL PROTECTED] or [EMAIL PROTECTED] You are more likely to find other people that have done similar things on [EMAIL PROTECTED] Cheers, Trent -- Trent Mick [EMAIL PROTECTED] ___ ActivePython mailing list [EM

Re: Log File Size Limiter

2002-04-12 Thread Trent Mick
ent p.s. There is a current proposal to add a standard logging module to Python 2.3 which will very likely provide a standard way of doing this for you. http://www.python.org/peps/pep-0282.html -- Trent Mick [EMAIL PROTECTED] ___ ActivePython maili

ActivePython 2.1.3 and ActivePython 2.2.1 released!

2002-04-17 Thread Trent Mick
pyppm install Numeric to install Numeric Python. Use this command to list all available packages: > pyppm search Please submit email feedback to [EMAIL PROTECTED], and file bugs against ActivePython at http://bugs.ActiveState.com/ActivePython. Thanks, and enjoy! Trent -- Trent Mick

Re: FW: (no subject)

2002-04-25 Thread Trent Mick
://www.python.org/doc/essays/comparisons.html Cheers, Trent -- Trent Mick [EMAIL PROTECTED] ___ ActivePython mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Re: python newsgroup

2002-04-25 Thread Trent Mick
activestate.com/ASPN/Mail/Browse/Threaded/python-list Trent -- Trent Mick [EMAIL PROTECTED] ___ ActivePython mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Re: Does this list have digest mode?

2002-04-26 Thread Trent Mick
ter you subscription address, click "Edit Options" I agree that this is kind of buried. I'll try to fix the list email suffix to point to this link as well. Cheers, Trent -- Trent Mick [EMAIL PROTECTED] ___ ActivePy

Re: (no subject)

2002-05-16 Thread Trent Mick
You should take a look at this list: http://www.python.org/editors/ Trent -- Trent Mick [EMAIL PROTECTED] ___ ActivePython mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs Other options: http://listser

Re: Python Package Manager with ActiveCD

2002-05-22 Thread Trent Mick
this *is* a work around because PyPPM's registry of installed packages has *not* been updated to say that Numeric is installed. Cheers, Trent -- Trent Mick [EMAIL PROTECTED] ___ ActivePython mailing list [EMAIL PROTECTED] To unsubscribe: http:/

Re: Python Package Manager with ActiveCD

2002-05-23 Thread &#x27;Trent Mick'
gnificant rewrite of parts of ActivePython were done immediately *after* ActivePython 2.1.1 so my understanding is that this process will be much smoother for subsequent ActiveCDs. Cheers, Trent -- Trent Mick [EMAIL PROTECTED] ___ ActivePython mailing li

Re: dumb question of the month to start on the list

2002-05-23 Thread Trent Mick
list of editors good for working with Python code: http://www.python.org/editors/ Trent -- Trent Mick [EMAIL PROTECTED] ___ ActivePython mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs Other options

Re: sys.path.append('')

2002-06-14 Thread Trent Mick
- You can set a PYTHONPATH environment variable with this directory in it. - You can create a .pth file with that directory on a single line by itself and then place that .pth file somewhere on the existng sys.path. - On Windows you can edit the following registry entry: HKLM/Software/Py

Re: Read/Change File attributes

2002-06-27 Thread Trent Mick
leAttributes.asp Cheers, Trent -- Trent Mick [EMAIL PROTECTED] ___ ActivePython mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs Other options: http://listserv.ActiveState.com/mailman/listinfo/ActivePython

Re: COM Help

2002-07-29 Thread Trent Mick
lieve, this situation. http://pychecker.sourceforge.net/ Cheers, Trent -- Trent Mick [EMAIL PROTECTED] ___ ActivePython mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs Other options: http://listserv.ActiveState.com/mailman/listinfo/ActivePython

Re: Python Win32 Extensions

2002-07-29 Thread Trent Mick
d by a different license. I don't know, off hand, what it is but it is open source. Mark Hammond, the author of the PyWin32 stuff donated all his code to the Python Software Foundation (PSF), which exists to hold Python and related IP. Trent -- Trent Mick [EMAI

Re: PythonWin limitation

2002-07-29 Thread Trent Mick
as complained (or they might have you just didn't find the complaint) because searching for strings that long is rare. If you have a strong need to do so, I suspect that it would be easy to widen the find dialog to allow this. Trent -- Trent Mick [EMAIL PROTECTED] ___

Re: Python on Windows extensions

2002-09-20 Thread Trent Mick
quot;CreateCompatibleBitmap". There are many Win32 API methods that are not implemented in PyWin32 (Mark Hammond is always accepting patches, though. :) I have attached the little 'pywin32where' script that I use to track down methods and attributes in PyWin32. Cheers, Trent -- Tr

Re: Python, unicode, Windows32 and NTFS...

2002-09-27 Thread Trent Mick
name support for Windows NT Currently, I believe, Martin von Loewis is working on a patch for this and intends to get it to be part of Python 2.3. As a workaround you _might_ be able to work with unicode filenames by using the lower-lever Win32 API file handling calls exposed via the PyWin

Re: XML Library from "XML Processing with Python"

2002-10-07 Thread Trent Mick
he $4.99each discount > store so I didn't lose that much if it is already an antique). I have not read the book but I think it should be fine for starters. Cheers, Trent -- Trent Mick [EMAIL PROTECTED] ___ ActivePython ma

Re: zlib and Debug

2002-11-14 Thread Trent Mick
rom somewhere > else? The latter: http://www.gzip.org/zlib/ Cheers, Trent -- Trent Mick [EMAIL PROTECTED] ___ ActivePython mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs Other options: http://lists

ANN: ActivePython 2.2.2 released!

2002-11-29 Thread Trent Mick
;s PyWin32 extensions, including the Pythonwin IDE, support for Python ASP, the PythonCOM system. Please submit email feedback to [EMAIL PROTECTED], and file bugs against ActivePython at http://bugs.ActiveState.com/ActivePython. Thanks, and enjoy! Trent -- Trent Mick [EMAIL

Re: Removal/Installation Problems.

2002-12-03 Thread Trent Mick
n Please include the following: - what version of Windows are you running - what are the contents of the dialog you get when you run: msiexec /? - do you have any virus scanners running? - what was the version of the ActivePython that you we

Re: Compiling _socket.pyd with SSL support

2003-01-03 Thread Trent Mick
beay32.lib msdev pcbuild.dsw /MAKE "_socket - Win32 Release" /USEENV - plop the new _socket.pyd and the relevant OpenSSL DLLs into your ActivePython installation YMMV. Cheers, Trent -- Trent Mick [EMAIL PROTECTED] ___ ActivePython mai

Re: Help with Mark Hammond's PythonWin

2003-01-03 Thread Trent Mick
ere: http://starship.python.net/~skippy/win32/ Cheers, Trent -- Trent Mick [EMAIL PROTECTED] ___ ActivePython mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs Other options: http://listserv.ActiveState.

ANN: ActivePython 2.3.2 & ActivePython 2.2.3

2003-10-27 Thread Trent Mick
t http://bugs.ActiveState.com/ActivePython Thanks, and enjoy! Trent -- Trent Mick [EMAIL PROTECTED] ___ ActivePython mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs Other options: http://listserv.ActiveState.com/mailma

Re: ActivePython 2.3.2 & ActivePython 2.2.3

2003-10-28 Thread Trent Mick
ble this associations by mucking around in your registry if you like. Sincerely, Trent -- Trent Mick [EMAIL PROTECTED] ___ ActivePython mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs Other options: h

Re: write to XP registry - access denied...

2003-10-31 Thread Trent Mick
dows XP Professional SP1 (fully up to date) > > The method which raises the error is: > > win32api.RegOpenKeyEx(win32con.HKEY_LOCAL_MACHINE, path>,0,win32con.KEY_SET_VALUE) > > Can anybody help me with this? Please? Brian, It would help if you could post a little working co

ActivePython 2.3 and PyPPM

2003-10-31 Thread Trent Mick
should do when it comes to package management for Python (which input will naturally be combined with our opinions, resource constraints, etc.). In the meantime, please send your thoughts to: [EMAIL PROTECTED] Thanks for your input, Trent and the ActivePython team -- Trent Mick [

ANN: ActivePython 2.3.2 & 2.2.3 bug fix releases

2003-11-14 Thread Trent Mick
, the PythonCOM system. Thanks to all those who submitted feedback and bug reports. Please submit email feedback to: [EMAIL PROTECTED] and file bugs against ActivePython at: http://bugs.ActiveState.com/ActivePython Cheers, Trent -- Trent Mick [EMAIL PROTECTED] Python Tech Lead -

Re: Latest build win32 debugs

2003-11-19 Thread Trent Mick
those up right away. Thank you for letting us know. Cheers, Trent -- Trent Mick [EMAIL PROTECTED] ___ ActivePython mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs Other options: http://listserv.ActiveState.com/mailman/listinfo/ActivePython

Re: Latest build of winall that will run on Win95

2003-11-19 Thread Trent Mick
latest ones that I know should have worked with Win95. Cheers, Trent -- Trent Mick [EMAIL PROTECTED] ___ ActivePython mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs Other options: http://listserv.ActiveState.c

Re: PyUnit failing on WinXP

2003-11-26 Thread Trent Mick
have ActiveTcl installed. The same thing runs fine in my installation of ActivePython 2.3.2 232. Perhaps it did not install properly. *Do* you have an init.tcl in your ActivePython installation. Run this: cd D:\ACTIVESTATE\PYTHON23 dir /s init.tcl This should find an init.tcl in the tcl

Re: Problems with PyPPM use and Pyperl installation

2003-12-10 Thread Trent Mick
Perl installation. As well, PyPerl developement has not kept up with recent Python and Perl versions, AFAIK. For example you will probably need to stick with Python 2.2 and Perl 5.6 for current use of PyPerl. Sincerely, Trent -- Trent Mick [EMAIL PROTECTED]

Re: ActivePython 2.3 and PyPPM

2004-05-06 Thread Trent Mick
> Does Trent Mick still work for ActiveState? If not, could someone else > tell us anything about the timetable for replacing the deleted PyPPM > functionality? Bob, Apologies for letting your question slide unanswered! Yes, I am still here. Currently there is no real timetable. Th

Re: socket.ssl()

2004-05-25 Thread Trent Mick
r_. We are looking at things we can do so that ActivePython can be distributed by default with SSL support built in. Admittedly though, that won't be a quick process so it might be a while before we can do that. Cheers, Trent -- Trent Mick [EMAI

Re: How to get python23.lib directory from installtion

2004-07-09 Thread Trent Mick
path.join(sys.prefix, "libs", "python%s.lib" % ver) 'C:\\Python23\\libs\\python23.lib' Trent -- Trent Mick [EMAIL PROTECTED] ___ ActivePython mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs Other options: http://listserv.ActiveState.com/mailman/listinfo/ActivePython

Re: Unresolved Symbol using MSVS debug build

2004-10-13 Thread Trent Mick
2.4 builds (or Python 2.4 builds from python.org) Sincerely, Trent -- Trent Mick [EMAIL PROTECTED] ___ ActivePython mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs Other options: http://listserv.ActiveState.com

Re: Unresolved Symbol using MSVS debug build

2004-10-13 Thread Trent Mick
from CVS here (you'd want the release23_maint CVS tag): http://sourceforge.net/cvs/?group_id=5470 There are PC build instructions in the PC and PCbuild subdirectories. Cheers, Trent -- Trent Mick [EMAIL PROTECTED] ___ ActivePython mailing

Re: Compiler used for building ActivePython

2004-10-01 Thread Trent Mick
ctivePython builds fairly soon, but there likely won't be a PyPPM replacement for some time. Sincerely, Trent -- Trent Mick [EMAIL PROTECTED] ___ ActivePython mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveStat

ANN: ActivePython 2.4b1 is available

2004-10-20 Thread Trent Mick
ve into Python"; 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 -- Trent Mick [EMAIL PROTECTED] ___ A

ANN: ActivePython 2.4b2 is available

2004-11-05 Thread Trent Mick
ve into Python"; and - a snapshot of the Python FAQs, HOWTOs and PEPs. Thanks, and enjoy! Trent -- Trent Mick [EMAIL PROTECTED] ___ ActivePython mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs Other opt

ANN: ActivePython 2.4c1 is available

2004-11-19 Thread Trent Mick
online version of the docs can be found here: http://aspn.activestate.com/ASPN/docs/ActivePython/2.4/welcome.html Thanks, and enjoy! Trent -- Trent Mick [EMAIL PROTECTED] ___ ActivePython mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv

ANN: ActivePython 2.4.0 build 243 is available

2004-11-30 Thread Trent Mick
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] ___ ActivePython mailing list [EMAIL PROTECTED] To unsubscr

Re: Bind failure in ActiveState Python when using tkFileDialog

2005-01-20 Thread Trent Mick
cause Tcl/Tk doesn't have the mainloop() construct that Perl/Tk and Tkinter do, instead it always starts the Tcl event loop from first Tk initialization. Jeff -- Trent Mick [EMAIL PROTECTED] ___ ActivePytho

Python XML-RPC Server Security Advisory

2005-02-03 Thread Trent Mick
ex as they become available. Please feel free to contact us if you have further questions. ActiveState Python Team -- Trent Mick [EMAIL PROTECTED] ___ ActivePython mailing list ActivePython@listserv.ActiveState.com To unsubscribe: http://listserv.Activ

ANN: ActivePython 2.3.5.236 and ActivePython 2.4.0.244 are available

2005-02-10 Thread Trent Mick
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]

ANN: ActivePython 2.4.1 build 245 is available

2005-03-31 Thread Trent Mick
.activestate.com/ActivePython/etc/ On behalf of the team at ActiveState, Thanks, and enjoy! -- Trent Mick [EMAIL PROTECTED] ___ ActivePython mailing list ActivePython@listserv.ActiveState.com To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs Oth

ANN: ActivePython 2.4.1 for Mac OS X is now available!

2005-06-07 Thread Trent Mick
lcome.html Thanks, and enjoy! Trent, Python Tech Lead -- Trent Mick [EMAIL PROTECTED] ___ ActivePython mailing list ActivePython@listserv.ActiveState.com To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs Other options: http://listserv.ActiveState.com/mailman/listinfo/ActivePython

ANN: ActivePython 2.4.1 for Solaris 10 on SPARC, x86 and x64 systems

2005-06-28 Thread Trent Mick
;; 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]

Re: PYTHONVERBOSE

2005-07-22 Thread Trent Mick
import cmd setup_import_hook() import xml teardown_import_hook() I couldn't quickly find very good documentation on Python import hooks, but here is a start (describing changes to the import hook system in Python 2.3): http://www.python.org/

Re: codecs.readline bug in Python 2.4.1.

2005-09-13 Thread Trent Mick
e know for sure that this fix will be picked up > in the next release? > > And does anyone know about when that release will appear? Yes, I hope to have that fixed in the next release. We hope to have a new release sometime within the next month, but I don't have a solid date th

Re: activepython for OSX crashes (bus error)

2005-10-24 Thread Trent Mick
act the f2py developers. Perhaps here: http://cens.ioc.ee/mailman/listinfo/f2py-users Cheers, Trent -- Trent Mick [EMAIL PROTECTED] ___ ActivePython mailing list ActivePython@listserv.ActiveState.com To unsubscribe: http://listserv.Ac

Re: (no subject)

2005-11-24 Thread Trent Mick
Python', 'python_version': '2.4.2', 'pywin32_version': '20051027', 'tcltk_version': '8.4', 'zlib_version': '1.2.3'} >>> "20051027" means that the PyWin32 CVS sou

Re: Creating and terminating a process using win32process

2005-11-24 Thread Trent Mick
l gizmo in the Python world is the subprocess module (in Python 2.4). I don't believe it has any cross-platform support for killing processed though. You could try my process.py module (http://trentm.com/projects/process) but you should generally

Re: python com server clean up problem

2005-11-28 Thread Trent Mick
to call some API to unregister it or shut it down, or something? You also might want to ask on python-list@python.org to see if there are any PyWin32 users there that may have run into a similar issue. Cheers, Trent -- Trent Mick [EMAIL PROTECTED]

Re: problem downloading and sending file using ftplib in Familiar Linux environment

2006-01-04 Thread Trent Mick
e behind the "re" (regular expression support module. Does this fail on your Ipaq: python >>> import re >>> ftplib.py relies on there being an 're' module. Trent -- Trent Mick [EMAIL PROTECTED]

Re: ActivePython 2.4.2 and MSVCR71.DLL

2006-01-16 Thread Trent Mick
l? Cheers, Trent -- Trent Mick [EMAIL PROTECTED] ___ ActivePython mailing list ActivePython@listserv.ActiveState.com To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs Other options: http://listserv.ActiveState.com/mailman/listinfo/ActivePython

ANN: ActivePython 2.4.2.10 is now available

2006-01-24 Thread Trent Mick
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 Mic

Re: Cannot install ACtivestatepython2.4.2.10 on WinXP

2006-02-20 Thread Trent Mick
his is going on? If David's suggestion doesn't work for you, you could generate an install log to see if that provides any more hints: http://aspn.activestate.com/ASPN/docs/ActivePython/2.4/installnotes.html#install_logging Cheers,

Re: ActivePython 2.4.2.10, Mac OS X (Intel) problems

2006-03-10 Thread Trent Mick
t for Intel (ActivePython) with an extension module built just for PowerPC (_mysql.so). What does this yield: file /Library/Frameworks/Python.framework/Versions/2.4/lib/python2.4/site-packages/_mysql.so I'm not sure that this is the problem, though. Trent -- Trent Mick [E

Re: ActivePython 2.4.2.10, Mac OS X (Intel) problems

2006-03-10 Thread Trent Mick
[Brett Powley wrote] > On 11/03/2006, at 4:17 AM, Trent Mick wrote: > >That may be because you are trying to use a python built just for > >Intel > >(ActivePython) with an extension module built just for PowerPC > >(_mysql.so). What does this yield: > >

Re: ActivePython 2.4.2.10, Mac OS X (Intel) problems

2006-03-10 Thread Trent Mick
supported, and probably won't be until MySQLdb-1.3 or 2.0. * MySQL-5.0 and newer are not currently supported, but might work. Brett, Which version of MySQL are you building against? Did you build MySQL yourself or get a prebuild from somewhere? If so where? Fink? Darwin Ports? mysql.com?

Re: ActivePython 2.4.2.10, Mac OS X (Intel) problems

2006-03-11 Thread Trent Mick
BTW, is moving towards putting the deeper install dir on the PATH: /Library/Frameworks/Python.framework/Versions/Current/bin because this is where new scripts installed via the usual "python setup.py install" get placed. ActivePython will likely go the same way. http://aspn.activestate.com/ASPN

ANN: ActivePython 2.4.3.11 is now available

2006-04-06 Thread Trent Mick
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 ___ ActivePython mailing list ActivePython@listser

ANN: ActivePython 2.4.3.12 is now available (bugfix for Windows)

2006-04-12 Thread Trent Mick
ensions. - ActivePython24.chm: An MS compiled help collection of the full 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 av

Re: Installing wxPython with ActivePython and OSX

2006-04-13 Thread Trent Mick
hon version 2.4. Because wxPython is a binary extension it needs to be built for a machine Python version. You'd need to use a wxPython specifically built for Python 2.4. Trent -- Trent Mick [EMAIL PROTECTED] ___ ActivePython mailing list Ac

Re: ANN: ActivePython 2.4.3.12 is now available (bugfix for Windows)

2006-04-17 Thread Trent Mick
r pointing this out. Originally I had just not bothered with updating the "latest version" on the web site pages because only the Windows builds were updated to version ".12". Bad choice. :) We'll update the listed version soon. Cheers, Trent -- Trent Mick [EMAIL PROTECTED

Re: Installing wxPython with ActivePython and OSX

2006-04-17 Thread Trent Mick
uires you to compile it yourself from source: http://sourceforge.net/project/showfiles.php?group_id=10718 wxPython-src-2.6.3.2.tar.gz Cheers, Trent -- Trent Mick [EMAIL PROTECTED] ___ ActivePython mailing list ActivePython@listserv.ActiveState.com To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs Other options: http://listserv.ActiveState.com/mailman/listinfo/ActivePython

Re: [Pythonmac-SIG] Installing wxPython with ActivePython and OSX

2006-04-17 Thread Trent Mick
he architecture of the Python binary and bomb > out if it's incorrect. I could go ahead and add such a test, although > I think the OS X Installer will just give a generic "you are not > allowed to install this package" message, which is arguably ju

Re: _winreg.SaveKey question

2006-10-24 Thread Trent Mick
PROTECTED] More Windows Python programmers hang out there. Trent -- Trent Mick [EMAIL PROTECTED] ___ ActivePython mailing list ActivePython@listserv.ActiveState.com To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs Other options: http://listserv.ActiveState.com/mailman/listinfo/ActivePython

Re: detecting launching from explorer

2007-02-16 Thread Trent Mick
Python.File Python.File="C:\Python24\python.exe" "%1" %* If you only need this for your machine you could try to put some hint in the Python.File action. Trent -- Trent Mick [EMAIL PROTECTED] ___ ActivePython mailing list ActivePytho

ANN: ActivePython 2.5.0.0 is now available

2007-03-13 Thread Trent Mick
m: An MS compiled help collection of the full ActivePython documentation set. Linux users of applications such as xCHM might find this useful. This package is installed by default on Windows. Extra bits are available from: http://downloads.activestate.com/ActivePython/etc/ Thank

Re: DST 2007 bug [was Re: ANN: ActivePython 2.5.0.0 is now available]

2007-03-13 Thread Trent Mick
bit (Intel)] on > win > 32 > Type "help", "copyright", "credits" or "license" for more information. >>>> import time >>>> time.asctime() > 'Tue Mar 13 14:43:46 2007' I've started this bug to look into it

Re: DST 2007 bug [was Re: ANN: ActivePython 2.5.0.0 is now available]

2007-03-14 Thread Trent Mick
Bob Kline wrote: > Trent Mick wrote: >> Note that ActivePython 2.5 is built with VC7.1 so it depends on >> msvcr71.dll rather than msvcrt.dll. > > Thanks, Trent. We had found the FAQ about upgrading msvcrt.dll for > ActiveState Perl to fix the same problem, but di

Re: keep console window after double-click foo.py

2007-03-22 Thread Trent Mick
> > No dice: the window closes even if main() raises an exception. > Any idea how to do it? Try this: try: main() except: import traceback print "The script crashed:" traceback.print_exc() print "Press RETURN to exit..."

Re: missing standard libraries in 2.5.0.0 on OS X

2007-04-18 Thread Trent Mick
"", line 1, in > ImportError: No module named os > >>> Could you run with the "-v" option? Trent -- Trent Mick trentm at activestate.com ___ ActivePython mailing list ActivePython@listserv.ActiveState.com

ANN: ActivePython 2.5.1.1 is now available

2007-05-04 Thread Trent Mick
n set. Linux users of applications such as xCHM might find this useful. This package is installed by default on Windows. Extra bits are available from: http://downloads.activestate.com/ActivePython/etc/ Thanks, and enjoy! Trent, Python Tech Lead -- Trent Mick trentm at activestate.c

  1   2   >