Re: Jewish Pirates of the Caribbean

2010-06-18 Thread Mick
George Neuner DESERVES his FREEDOM OF SPEECH. Freedom of speech dousn't guarantee an audience -- http://mail.python.org/mailman/listinfo/python-list

Re: RELEASED Python 2.4.2 (final)

2005-09-29 Thread Trent Mick
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

Re: RELEASED Python 2.4.2 (final)

2005-09-30 Thread Trent Mick
estate.com/ActivePython/show_bug.cgi?id=41083 Trent -- Trent Mick [EMAIL PROTECTED] -- http://mail.python.org/mailman/listinfo/python-list

Re: RELEASED Python 2.4.2 (final)

2005-09-30 Thread Trent Mick
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

Re: How to prevent logging warning?

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

Re: installer for amd64 build of python?

2005-10-13 Thread Trent Mick
MS -- and Sun -- are calling AMD64). Trent -- Trent Mick [EMAIL PROTECTED] -- http://mail.python.org/mailman/listinfo/python-list

Re: installer for amd64 build of python?

2005-10-13 Thread Trent Mick
ing. Trent -- Trent Mick [EMAIL PROTECTED] -- http://mail.python.org/mailman/listinfo/python-list

Re: Yes, this is a python question, and a serious one at that (moving to Win XP)

2005-10-13 Thread Trent Mick
kit/en-us/regentry/34995.asp Cheers, Trent -- Trent Mick [EMAIL PROTECTED] -- http://mail.python.org/mailman/listinfo/python-list

Re: Moving to Win XP as a Python developer

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

Re: Eclipse best/good or bad IDE for Python?

2005-12-05 Thread Trent Mick
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

Re: extract python install info from registry

2005-12-06 Thread Trent Mick
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

Re: windows installer problems

2005-12-06 Thread Trent Mick
: 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

Re: Eclipse best/good or bad IDE for Python?

2005-12-06 Thread Trent Mick
[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

Re: can't find socket.ssl() on win32

2005-12-07 Thread Trent Mick
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

Re: Documentation suggestions

2005-12-08 Thread Trent Mick
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

Re: Documentation suggestions

2005-12-09 Thread Trent Mick
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

Re: Hash of class from instance

2005-02-02 Thread Mick Krippendorf
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

Re: returning True, False or None

2005-02-04 Thread Mick Krippendorf
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

Re: returning True, False or None

2005-02-04 Thread Mick Krippendorf
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

Re: returning True, False or None

2005-02-04 Thread Mick Krippendorf
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

Re: returning True, False or None

2005-02-04 Thread Mick Krippendorf
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

Re: PEP 304 - is anyone really interested?

2005-06-22 Thread Trent Mick
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

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] -- http://mail.python.org/mailman/listinfo/python-list

Re: How to find Windows "Application data" directory??

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

Re: How to find Windows "Application data" directory??

2005-06-29 Thread Trent Mick
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

Re: qustion about build Python on the Solaris 9

2005-07-08 Thread Trent Mick
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

Re: problem with ActiveState install

2005-07-26 Thread Trent Mick
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

Re: creating/modifying sparse files on linux

2005-08-17 Thread Trent Mick
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

Re: Unix diff command under Window.

2005-08-25 Thread Trent Mick
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

Re: Command Line arguments

2005-08-25 Thread Trent Mick
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

Re: minimalist regular expression

2005-08-25 Thread Trent Mick
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

Re: Command Line arguments

2005-08-26 Thread Trent Mick
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

Re: Python2Html regex question

2005-08-30 Thread Trent Mick
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

Re: Problem building Python on HP-UX

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

Re: ANN: PyInstaller 1.0 in the works: package your Python app into a single-file executable

2005-09-06 Thread Trent Mick
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

Re: improvements for the logging package

2005-09-06 Thread Trent Mick
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

Re: ANN: PyInstaller 1.0 in the works: package your Python app into asingle-file executable

2005-09-06 Thread Trent Mick
[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

Re: improvements for the logging package

2005-09-07 Thread Trent Mick
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

Re: improvements for the logging package

2005-09-07 Thread Trent Mick
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

Re: improvements for the logging package

2005-09-08 Thread Trent Mick
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

Re: How to upgrade to 2.4.1 on Mac OS X tiger

2005-09-09 Thread Trent Mick
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

Re: improvements for the logging package

2005-09-14 Thread Trent Mick
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

Re: improvements for the logging package

2005-09-15 Thread Trent Mick
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

Re: ddd or eclipse with mod_python

2005-09-15 Thread Trent Mick
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

Re: Finding where to store application data portably

2005-09-21 Thread 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

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] -- http://mail.python.org/mailman/listinfo/python-list

Re: ActivePython 2.3.5.236 and ActivePython 2.4.0.244 are available

2005-02-11 Thread Trent Mick
32-ix86/SystemFolder: pywintypes24_d.pdb Cheers, Trent -- Trent Mick [EMAIL PROTECTED] -- http://mail.python.org/mailman/listinfo/python-list

Re: Help Installing Python 2.3.5

2005-03-11 Thread Trent Mick
[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

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] -- http://mail.python.org/mailman/listinfo/python-list

Re: Python Win32 Silent Install

2004-12-01 Thread Trent Mick
/docs/ActivePython/2.4/installnotes.html#install_silent Cheers, Trent -- Trent Mick [EMAIL PROTECTED] -- http://mail.python.org/mailman/listinfo/python-list

Re: pythonwin broke

2004-12-03 Thread Trent Mick
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

Re: Python Cookbook, 2'nd. Edition is published

2005-03-28 Thread Trent Mick
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

Re: checksum works in unix but not win32 os

2005-03-29 Thread Trent Mick
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

Re: checking if program is installing using python

2005-03-30 Thread Trent Mick
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

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] -- http://mail.python.org/mailman/listinfo/python-list

Re: System bell

2005-03-31 Thread Trent Mick
[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

Re: System bell

2005-03-31 Thread Trent Mick
#x27;t know of any command called "\a" to run. Trent -- Trent Mick [EMAIL PROTECTED] -- http://mail.python.org/mailman/listinfo/python-list

Re: System bell

2005-04-01 Thread Trent Mick
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

Re: terminating an inactive process

2005-04-04 Thread Trent Mick
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

Re: Updating Windows File Summary Data

2005-04-18 Thread Trent Mick
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

Re: create python process

2005-04-26 Thread Trent Mick
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

Re: Coding Standards (and Best Practices)

2005-04-26 Thread Trent Mick
/pep-0008.html Cheers, Trent -- Trent Mick [EMAIL PROTECTED] -- http://mail.python.org/mailman/listinfo/python-list

Re: Komodo syntax checking for python2.4

2005-04-26 Thread Trent Mick
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

Re: Progress Bar with urllib2

2005-04-26 Thread Trent Mick
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

Lists inside dictionary and how to look for particular value

2014-01-26 Thread mick verdu
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]:

Re: Lists inside dictionary and how to look for particular value

2014-01-26 Thread mick verdu
@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

Re: Lists inside dictionary and how to look for particular value

2014-01-26 Thread mick verdu
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

Re: Lists inside dictionary and how to look for particular value

2014-01-26 Thread mick verdu
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

Eclipse IDE printing values automatically

2014-01-28 Thread mick verdu
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

Re: Eclipse IDE printing values automatically

2014-01-29 Thread mick verdu
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

Re: Difference between ActivePython and Python.org

2005-12-14 Thread Trent Mick
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

Re: Python IDE (was: PythonWin troubleshooting)

2005-12-20 Thread Trent Mick
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

Re: Changing a shell's current directory with python

2005-12-20 Thread Trent Mick
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:

Re: Komodo IDE: '__file__' is not defined when debugging

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

Re: Win32 Binary-only for 2.3.x?

2006-01-04 Thread Trent Mick
Cheers, Trent -- Trent Mick [EMAIL PROTECTED] -- http://mail.python.org/mailman/listinfo/python-list

Re: Win32 Binary-only for 2.3.x?

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

Re: Building Pywin32 source code?

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

modifying DLL string table programatically (Was: Win32 Binary-only for 2.3.x?)

2006-01-09 Thread Trent Mick
with COM code last time I tried. Trent -- Trent Mick [EMAIL PROTECTED] -- http://mail.python.org/mailman/listinfo/python-list

Re: return values of os.system() on win32

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

Re: python 2.5 & sqlite3

2006-10-12 Thread Trent Mick
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

Re: Help: Python2.3 & Python2.4 on RHEL4 x86_64

2006-10-19 Thread Trent Mick
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

Re: uninstall and Windows file associations

2006-11-02 Thread Trent Mick
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

Re: Using Komodo 3.5 - Setting breakpoints in multiple *.py files

2006-06-19 Thread Trent Mick
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

Re: Active Python versions

2006-06-19 Thread Trent Mick
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

Re: Active Python versions

2006-06-19 Thread Trent Mick
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] --

Re: Active Python versions

2006-06-19 Thread Trent Mick
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

Re: Active State and Komodo...

2006-11-27 Thread Trent Mick
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

Re: pyxpcom

2006-11-28 Thread Trent Mick
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

Re: pyxpcom

2006-11-28 Thread Trent Mick
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

Re: pyxpcom

2006-11-29 Thread Trent Mick
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 >>>

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 Mick TrentM at ActiveState.com -- http://mail.python.org/mailman/listinfo/python-list

Re: ActivePython & SSL

2006-01-25 Thread Trent Mick
'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

Re: Komodo - Will it Lock Me In?

2006-02-17 Thread Trent Mick
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

Re: Activestate python installation

2006-02-20 Thread Trent Mick
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

Re: command string good in subprocess.Popen(string) fails in process.Process(string)

2005-05-16 Thread Trent Mick
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

Re: SSL (HTTPS) with 2.4

2005-05-18 Thread Trent Mick
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

Re: install python 2.4.1

2005-05-24 Thread Trent Mick
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

Re: os independent way of seeing if an executable is on the path?

2005-05-26 Thread Trent Mick
> 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

Re: prob with ActiveState and FireFox on Win32 (XP and W2K)

2005-06-01 Thread Trent Mick
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

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] -- http://mail.python.org/mailman/listinfo/python-list

  1   2   3   >