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
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
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 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
@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
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]:
x shortcuts. Also, this
was a looong time ago (back when python 1.5, 1.6 and 2.0 were still
relevant) so it could be there there *weren't* many of the typical (now)
Linux "pythonX.Y" installed executables.
Trent
--
Trent Mick
ActiveState
--
http://mail.python.org/mailman/listinfo/python-list
[['a'], ['b'], ['f'], ['s'], ['c'], ['g']], max))
['a', 'b', 'f', 's', 's', 's']
or:
>>> data = [[0], [1], [2], [1], [1], [2], [3]]
>>> print list(acc(data, lambda x: float(sum(x)) / float(len(x
[0.0, 0.5, 1.0, 1.0, 1.0, 1.1667, 1.4285714285714286]
Endless possibilities in an endless universe.
Regards,
Mick.
--
http://mail.python.org/mailman/listinfo/python-list
Mark Lawrence wrote:
> On 17/07/2010 20:38, Mick Krippendorf wrote:
>>
>> If Java were *really* a multiple dispatch language, it wouldn't be
>> necessary to repeat the accept-code for every subclass. Instead a single
>> accept method in the base class would suffice
...Node and the operation classes. It Encapsulates What
Varies and helps to uphold the Open/Closed Principle, because to add new
operations one does not need to touch the ...Node classes. It implements
double dispatching in a single dispatch language.
Regards,
Mick.
--
http://mail.python.org/mailman/listinfo/python-list
were *really* a multiple dispatch language, it wouldn't be
necessary to repeat the accept-code for every subclass. Instead a single
accept method in the base class would suffice. In fact, with true
multiple dispatch VP wouldn't even be needed.
Regards,
Mick.
--
http://mail.python.org/mailman/listinfo/python-list
init_pathinfo', '_test', 'abs__file__',
'addbuilddir', 'addpackage', 'addsitedir', 'addsitepackages',
'aliasmbcs', 'execsitecustomize', 'main', 'makepath', 'os', 'removedup
paths', 'setBEGINLIBPATH', 'setcopyright', 'setencoding', 'sethelper',
'setquit', 'sys']
>>> site.__file__
'C:\\Python24\\lib\\site.pyc'
>>>
"site.py" (at least in the Python trunk) has this:
def sethelper():
__builtin__.help = _Helper()
Trent
--
Trent Mick
http://www.activestate.com
--
http://mail.python.org/mailman/listinfo/python-list
George Neuner DESERVES his FREEDOM OF SPEECH.
Freedom of speech dousn't guarantee an audience
--
http://mail.python.org/mailman/listinfo/python-list
ive us your feedback:
emailhttp://listserv.activestate.com/mailman/listinfo/komodo-beta
bugs http://bugs.activestate.com/enter_bug.cgi?product=Komodo
forumhttp://community.activestate.com/products/Komodo
Cheers,
Trent
--
Trent Mick
Product Manager, Komodo and Python
ActiveState
.DLL in your ZIP release. I do see a
MSVCR71.DLL.
That is probably a bug in the ZIP package (the MSI is by far the primary
package for Windows so gets more attention).
I've started a bug for this:
http://bugs.activestate.com/show_bug.cgi?id=86794
Thanks,
Trent
--
Trent Mick
trentm at act
used by the included PyWin32 extensions that have
Python bindings for the Microsoft Foundation Classes GUI APIs.
Trent
--
Trent Mick
trentm at activestate.com
http://trentm.com/blog/
--
http://mail.python.org/mailman/listinfo/python-list
warning, but yes, it is useful
sometimes. Here's a less error-prone version:
>>> def bar():
... def foo(z, a=[]):
... a.append(z)
... return a
... return foo
...
>>> f = bar()
>>> f(1)
[1]
>>> f(2)
[1, 2]
>>> g = bar()
>>> g(3)
[3]
>>> g(4)
[3, 4]
Regards,
Mick.
--
http://mail.python.org/mailman/listinfo/python-list
teaches a lesson on how to implement __eq__ and __hash__, if
you must. Just make sure your objects always do uphold the law above,
and do not change in respect to __hash__ during their lifetime. OTOH it
is possible to do otherwise, as long as you don't try to use these
objects as elements of a set or keys in a dictionary. But then, why
would you bother to implement your own __hash__ method?
Regards,
Mick.
--
http://mail.python.org/mailman/listinfo/python-list
gt; (27, 1114), (28, 1183), (29, 1254), (30, 1327), (31, 1402), (32,
> 1479), (33, 1558), (34, 1639), (35, 1722), (36, 1807)]
>>>> ([base, int('1e7', base=base)] for base in range(15,37))
>
Because the former is a list comprehension, whereas the latter is a
generator expr
Peng Yu wrote:
> It seems that int() does not convert '1e7'.
It seems it does, though:
>>> int('1e7', base=16)
487
Mick.
--
http://mail.python.org/mailman/listinfo/python-list
Steven D'Aprano wrote:
> On Sun, 01 Nov 2009 21:32:15 +0100, Mick Krippendorf wrote:
>>
>> (Ax)(x is a fire-breathing animal <-> x is a real number equal to
>> sqrt(-1)).
>>
>> And since there are neither such things, it follows that s1 = s2.
>
>
= b := (AabP)(Pa <-> Pb)
AKA the Leibniz-Principle, but this definition is 2nd order logic. If we
have sets at our disposal when we're axiomatisizing mathematics, we can
also define it 1st-orderly:
a = b := (Aabc)((a e c) <-> (b e c))
Regargs,
Mick.
--
http://mail.python.org/mailman/listinfo/python-list
Python 3 installers. They've had them almost
since the day it was released. It's just not the default because many
of the libraries people use haven't been ported yet.
https://www.activestate.com/activepython/downloads/
Also:
http://www.activestate.com/activepython/python3
kj wrote:
> How can one check that a Python script is lexically correct?
By using pylint.
Mick.
--
http://mail.python.org/mailman/listinfo/python-list
Jess Austin wrote:
> That's nice, but it means that everyone who imports my class will have
> to import the monkeypatch of frozenset, as well. I'm not sure I want
> that. More ruby than python, ne?
I thought it was only a toy class?
Mick.
--
http://mail.python.org/mailman/listinfo/python-list
print "called %s.__eq__()" % self.__class__
if isinstance(other, (set, frozenset)):
return True
return super(eqmixin, self).__eq__(other)
class set(eqmixin, set):
pass
class frozenset(eqmixin, frozenset):
pass
class MySet(set):
pass
Re
Aweks schrieb:
> what do you use?
Either of the following:
-> Vim + Eclim + Rope + pylint + PyDev + Eclipse + cygwin + WindowsXP
-> Vim + Linux
Mick.
--
http://mail.python.org/mailman/listinfo/python-list
unchanged, whereas in the above code "inherited" methods are changed
to expect and return Maybe objects.
Some things don't work, though, e.g. slicing. But this could be
implemented via specialized lifting functions for the __XXXitem__
methods. One thing that does work though, is that ordinary functions can
be wrapped as Maybe objects which then "do the same thing" on other
Maybe objects that the normal functions do on normal objects, like in
the foo-example. So it's quite close to a monadic version, in that it
"lifts" objects and functions from one type space into another one, the
Maybe space. But compared to a real Monads it's much more pythonic, IMO.
HTH,
Mick.
--
http://mail.python.org/mailman/listinfo/python-list
.
I found this, where Raymond Hettinger shows how this could be changed:
http://mail.python.org/pipermail/python-bugs-list/2005-December/031439.html
Mick.
--
http://mail.python.org/mailman/listinfo/python-list
print boo.__mul__
b = boo()
print b * 7
also explodes. Or am I misinterpreting the word "type" here?
Mick.
--
http://mail.python.org/mailman/listinfo/python-list
em
y = Maybe(Nothing)
print y >> lift(lambda v: v * 7)
print y >> lift(lambda v: v * 7) >> idem
8<8<8<8<8<
While I can see how this monadic stuff is usefull in Haskell et al.,
I'm still not sure how to apply it to Python. And for the impenetrable
mathematical language in which Monads are usually presented, well...
HTH,
Mick.
--
http://mail.python.org/mailman/listinfo/python-list
logical
consequence ;-)
Mick.
--
http://mail.python.org/mailman/listinfo/python-list
Ben Finney schrieb:
> Mick Krippendorf writes:
> The word “anormal” appears to have been made up by you.
> The negation of the word “normal” is “abnormal”, perhaps you meant
> “First Abnormal Form”?
Maybe my English (and my memory) is just not so good. I'm german, and
he
Paul Rubin schrieb:
> Ethan Furman writes:
>> If I knew what First Anormal Form was I (hope!)
>
> It appears to be a made-up term.
I read it somewhere once, I just can't find or even remember the source.
I definitely didn't make it up, though I wish I had.
Mick.
-
inserts
values in arbitrary order, or, if the one program expects ints, and the
other inserts floats, maybe not even using dotted notation, but
commas... you get the picture. In summa: FAN is evil.
Mick.
--
http://mail.python.org/mailman/listinfo/python-list
Ethan Furman schrieb:
> Mick Krippendorf wrote:
>> BTW, the comma-separted-values-in-a-field is officially called the First
>> Anormal Form. There *has to be* some value to it since I've seen it used
>> quite a few times...
>
> Just because you've seen
it since I've seen it used
quite a few times...
Mick.
--
http://mail.python.org/mailman/listinfo/python-list
n isn't strong on encapsulation, so "extrinsic" functionality is
quite common. Nothing to loose sleep over though, because, as Guido
says, "we're all consenting adults here" :-)
Mick.
--
http://mail.python.org/mailman/listinfo/python-list
mattia schrieb:
> Any particular difference in using for a simple collection of element ()
> over [] or vice-versa?
Just try this and you'll see:
tup = (1,2,3)
tup.append(4)
or:
tup = (1,2,3)
tup[0] = 4
HTH,
Mick.
--
http://mail.python.org/mailman/listinfo/python-list
x27; and
'contextlib' in your docs.
HTH,
Mick.
--
http://mail.python.org/mailman/listinfo/python-list
ow when, but one day it will happen.
But at least it will not be my mistake anymore.
Mick.
--
http://mail.python.org/mailman/listinfo/python-list
ed on a name stored in a variable?
What's your use case, I ask?
> - have I missed something that lets me do this already?
Yes, and, uh, yes. "locals()['foo'] = bar" works in that it does the
same thing as "foo = bar". So why don't you write that instead?
Mick.
--
http://mail.python.org/mailman/listinfo/python-list
t;"
...
Thread(target=MyClass().run).start()
Thread(target=MyClass().run).start()
Thread(target=MyClass().run).start()
Thread(target=MyClass().run).start()
Thread(target=MyClass().run).start()
And *please* don't always quote the whole article in your answer.
Mick.
--
http://mail.python.org/mailman/listinfo/python-list
eaded stuff here """
Thread(target=threaded).start()
Thread(target=threaded).start()
Thread(target=threaded).start()
Thread(target=threaded).start()
Thread(target=threaded).start()
Now threaded() runs five times.
Python is not Java where one has to subclass from Th
:-P.
But this *is* pythonic. It must be, since Guido has identified it as a
Pattern and named it the Dommand Dispatch Pattern. Also, it is in
perfect compliance to The Zen (import this).
Regards,
Mick.
--
http://mail.python.org/mailman/listinfo/python-list
ller = SimController
else:
Controller = RealController
print Controller()
Regards,
Mick.
--
http://mail.python.org/mailman/listinfo/python-list
n a dictionary.
Only if Shaun wanted to use lists as keys (which of course doesn't
work). Luckily he just wants them as values.
Mick.
--
http://mail.python.org/mailman/listinfo/python-list
end("another")
d["jim"].append("slow down, grasshopper")
print d
HTH,
mick.
--
http://mail.python.org/mailman/listinfo/python-list
ut I would like
something more portable. I looked through the `os' and `os.path'
modules but I didn't find anything.
http://code.google.com/p/which/
Trent
--
Trent Mick
trentm at activestate.com
http://trentm.com/blog/
--
http://mail.python.org/mailman/listinfo/python-list
ed in the main download tables:
http://www.activestate.com/activepython/downloads/
and not discussed in the install notes:
http://docs.activestate.com/activepython/2.6/installnotes.html
Cheers,
Trent
--
Trent Mick
trentm at activestate.com
http://trentm.com/blog/
--
http://mail.python.org/mailman/listinfo/python-list
Just want to clarify something: the main AS distribution of Python
(ActivePython) for Windows is an MSI.
There is sometimes a .zip file with an install.bat -- but that isn't
really intended for wide use. Is that what you are referring to here?
Cheers,
Trent
--
Trent Mick
trent
Lave my keyboard alone" guy like me.
Do you mean Komodo?
http://www.activestate.com/komodo/
Trent
--
Trent Mick
trentm at activestate.com
--
http://mail.python.org/mailman/listinfo/python-list
est nightly build:
http://downloads.activestate.com/Komodo/nightly/
Cheers,
Trent
--
Trent Mick
trentm at activestate.com
--
http://mail.python.org/mailman/listinfo/python-list
e (View -> View Line Numbers) then you
can do what you want in the line numbers gutter.
Cheers,
Trent
--
Trent Mick
trentm at activestate.com
--
http://mail.python.org/mailman/listinfo/python-list
PythonWin)
No, Komodo is not a wx app.
Trent
--
Trent Mick
trentm at activestate.com
--
http://mail.python.org/mailman/listinfo/python-list
http://mail.python.org/pipermail/python-list/2007-July/447987.html
Cheers,
Trent
--
Trent Mick
trentm at activestate.com
--
http://mail.python.org/mailman/listinfo/python-list
Kay Schluehr wrote:
On 13 Dez., 00:16, Trent Mick wrote:
Note that currently PyWin32 is not included in ActivePython 3.0.
Is there any activity in this direction?
The PyWin32 CVS tree is getting checkins from Mark Hammond and Roger
Upole with a py3k tag. I'm not sure how close the
plications 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
http://planet.activestate.com/
trentm at activestate.com
--
http://mail.python.org/mailman/listinfo/python-list
ched to _you_,
not a particular machine you run it on, as I remember.
Also correct: with a Komodo IDE license you can use Komodo on any
machine that you use.
Trent
--
Trent Mick
trentm at activestate.com
--
http://mail.python.org/mailman/listinfo/python-list
idelib\idle.pyw
I believe there is a problem with your install. My guess is that your
ActivePython install is using an older python26.dll sitting around
somewhere.
Is there a python26.dll somewhere in your "C:\Python26" directory, or
wherever you installed ActivePython 2.6?
Tr
strator account (which is disabled
by default on Vista). If you have a way around that, then great.
I believe that IDLE ran just fine when installed as a user in the admin
group.
Trent
--
Trent Mick
trentm at activestate.com
--
http://mail.python.org/mailman/listinfo/python-list
wry with the ActivePython installer.
Sincerely,
Trent
--
Trent Mick
trentm at activestate.com
--
http://mail.python.org/mailman/listinfo/python-list
p://www.activestate.com/products/komodo/
Thanks, and enjoy!
Trent
p.s. We hope to have ActivePython 3.0 builds out fairly soon.
--
Trent Mick
Python Tech Lead
trentm at activestate.com
--
http://mail.python.org/mailman/listinfo/python-list
IE's proxy settings are effectively setting the Windows system
networking proxy settings?
Trent
--
Trent Mick
trentm at activestate.com
--
http://mail.python.org/mailman/listinfo/python-list
depends on a separate install of either ActiveTcl
or TclTkAqua to provide the Tk framework.
Cheers,
Trent
--
Trent Mick
trentm at activestate.com
--
http://mail.python.org/mailman/listinfo/python-list
Nick Craig-Wood wrote:
Trent Mick <[EMAIL PROTECTED]> wrote:
I happy to announce that ActiveState Code has been taken out of beta.
This is the new site replacing the ASPN Cookbooks -- in particular the
Python Cookbook.
http://code.activestate.com/
Looks great and much faste
his thread. That test will just
tell you if the Python *build* is 32-bit or 64-bit. If the answer is
32-bit, then that doesn't tell you if this is a 32-bit Python running on
a 64-bit OS.
Trent
--
Trent Mick
trentm at activestate.com
--
http://mail.python.org/mailman/listinfo/python-list
6 (32-bit), IA64 (64-bit) and AMD64 (64-bit).
Here is a "platinfo.py" module that might help if you need to do this
for other platforms:
http://svn.openkomodo.com/openkomodo/view/openkomodo/trunk/util/platinfo.py
Cheers,
Trent
--
Trent Mick
trentm at activestate.com
--
http://mail.python.org/mailman/listinfo/python-list
sible
-- but otherwise my experience in Komodo perf work has been algorithmic
issues. Also, if Komodo hadn't been using Python for application logic
since day one we probably wouldn't be much further than Notepad right
now. :)
Cheers,
Trent (komodo developer)
--
Trent Mick
. I need to add that to the recipe add form:
http://code.activestate.com/recipes/add/
Trent
--
Trent Mick
trentm at activestate.com
--
http://mail.python.org/mailman/listinfo/python-list
Stef Mientki wrote:
one small remark,
If I want to browse 200 recipes, at 10 per page
... please make something like 100 available per page,
are internet is fast enough nowadays.
Touche. Done:
http://code.activestate.com/recipes/?paginate_by=100
Cheers,
Trent
--
Trent Mick
trentm at
rwise, re: Linux releases of Python 2.5?
I thought one of the major features of Python 2.5 was its embedded
SQLite engine.
Thoughts?
--
Trent Mick
trentm at activestate.com
--
http://mail.python.org/mailman/listinfo/python-list
w.activestate.com/products/komodo/
Thanks, and enjoy!
Trent, Python Tech Lead
--
Trent Mick
trentm at activestate.com
--
http://mail.python.org/mailman/listinfo/python-list
al.
Please let me know (or on the komodo-discuss list [^1] or Komodo bug
database [^2]) if you have any problems getting that going.
Cheers,
Trent
[1]: http://listserv.activestate.com/mailman/listinfo/Komodo-discuss
[2]: http://bugs.activestate.com/query.cgi?product=Komodo
--
Trent Mick
trentm at activestate.com
--
http://mail.python.org/mailman/listinfo/python-list
on 2.5.
Cheers,
Trent
--
Trent Mick
trentm at activestate.com
--
http://mail.python.org/mailman/listinfo/python-list
On Aug 27, 4:46 pm, "Gabriel Genellina" <[EMAIL PROTECTED]>
wrote:
> En Mon, 27 Aug 2007 03:05:30 -0300, Mick Duprez <[EMAIL PROTECTED]>
> escribi?:
>
> > Thank you very much Gabriel, changing the NULL to None did the trick
> > (it also helps i
On Aug 27, 2:00 pm, "Gabriel Genellina" <[EMAIL PROTECTED]>
wrote:
> En Fri, 24 Aug 2007 04:03:05 -0300, Mick Duprez <[EMAIL PROTECTED]>
> escribi?:
>
> > I have a small problem. I get an error I don't know how to resolve,
> > any help would be much
apiRecipDesc * len(RecipWork) #size of struct??
rda = MapiRecipDesc_A() # isn't it MapiRecipDesc as declared??
There's some new stuff going on here I don't understand.
thanks for your help,
Mick.
--
http://mail.python.org/mailman/listinfo/python-list
articular implementation would be different platform *builds* (my
language).
ActivePython is a separate (from python.org's) *distribution* of CPython
-- i.e. the sample implementation as CPython (same source code). This is
similar, in some respects, to SuSE, Debian, RedHat, Ubuntu, etc. b
" (should match (([A-Z_][A-Z1-9_]*)|(__.*__))$)
C:170: Invalid name "args" (should match (([A-Z_][A-Z1-9_]*)|(__.*__))$)
Which style convention is it referring to? Should these really be all
caps?
Thank you,
Mick
--
http://mail.python.org/mailman/listinfo/python-list
Hi All,
I can't quite get my head around embedding Python in a C app and I
have a few questions if I may, here is the background.
I want to create a dll plugin that has the Python interpreter embedded
in it for use in scripting an established application. So far I have
created the interface dll and
udes
an editor/IDE called PythonWin. <http://sourceforge.net/projects/pywin32/>
[2] Komodo embeds its own Python build for doing a lot of the core
logic. A custom Python build is generally necessary to avoid
cross-talking between Komodo's Python and other possible Pythons on the
system.
--
Trent Mick
trentm at activestate.com
--
http://mail.python.org/mailman/listinfo/python-list
he hashlib libraries). As of ActivePython 2.5.0.0 full SSL support
is available.
Cheers,
Trent
--
Trent Mick
trentm at activestate.com
--
http://mail.python.org/mailman/listinfo/python-list
On May 29, 11:33 am, Max Erickson <[EMAIL PROTECTED]> wrote:
> Mick Duprez <[EMAIL PROTECTED]> wrote:
> > Hi All,
>
> > I've installed Python 2.5 on a number of machines but on one I'm
> > having problems with the CLI.
> > If I fire up
o sp2
Python25
wxPython2.8 unicode
PIL
numpy
any clues to what's causing this behavior?
tia,
Mick.
--
http://mail.python.org/mailman/listinfo/python-list
on/
You should give Komodo Edit a try too:
http://www.activestate.com/products/komodo_edit/
Cheers,
Trent
--
Trent Mick
trentm at activestate.com
--
http://mail.python.org/mailman/listinfo/python-list
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.com
--
http://mail.python.org/mailman/listinfo/python-list
olaris8-sparc"
build) supports OpenSSL. Note that the Solaris on *x86* ActivePython
build does not because there were build errors for that extension that
haven't yet been resolved.
http://www.activestate.com/products/activepython/
Cheers,
Trent
--
Trent Mick
trentm at activestat
load. Is it still available somewhere? Thanks!
Python 1.5.2 was release way before ActiveState started doing
ActivePython, so no luck there. :(
--
Trent Mick
trentm at activestate.com
--
http://mail.python.org/mailman/listinfo/python-list
y have changed though.
Trent
--
Trent Mick
trentm at activestate.com
--
http://mail.python.org/mailman/listinfo/python-list
Yes.
Wensui Liu wrote:
> Is it free of charge?
>
> On 3/13/07, Trent Mick <[EMAIL PROTECTED]> wrote:
>>...
>> ActivePython is ActiveState's binary distribution of Python. Builds for
>> Windows, Mac OS X, Linux, HP-UX and AIX are made freely available.
>
t possible to find the file".
>
> Is there a remedy for this problem?
http://bugs.activestate.com/show_bug.cgi?id=68029
I don't currently have a work around for it. I should be able to fix this for
the next release (but don't have a date for that yet). You could CC yourself
to that b
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
ile plus an install script" installer that
ActivePython includes in addition to the usual (and preferred MSI installer).
Trent
p.s. ActivePython 2.5 builds will be out this week.
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
port wasn't up to snuff.
Cheers,
Trent
--
Trent Mick
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
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
>>>
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:
> 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
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
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
1 - 100 of 204 matches
Mail list logo