ude a vcvars32.bat that sets
appropriate ones) if the VS lookup failed.
Which is what the patch here:
http://www.vrplumber.com/programming/mstoolkit/
does.
Have fun,
Mike
Mike C. Fletcher
Designer, VR Plumber, Coder
http://www.vrplumber.com
HI,
I currently have a "working" script that uses sockets to handle threads
communications - the problem is that it gives me obvious problems in handling
free ports (launching the script more than once ).
Is thread named pipes communication allowed ?
Regards,
Philippe
--
http://mail.pyth
>>Replace the sockets with a queue of strings.
>>http://docs.python.org/lib/module-Queue.html
>>Write your Send and Recv functions in terms of Queue.get() and Queue.put();
And those entry points seem to reentrant too !!!
Thanks a lot, you made my day (I say that a lot on this mailing lis
>>What are you trying to do? Perhaps if you backed up and described
>>the "what" we could make better recommendations about the "ho
Just trying to have a GUI thread (tkinter) talk back and forth with a debugger
derived object threaded (bdb).
No I have not tried yet as sometimes things seem to
Chris wrote:
Okay, color me stupid, but what is everyone referencing when they
mention Python 3.0? I didn't see any mention of it on the Python site.
http://www.python.org/peps/pep-3000.html
(which happens to be the first hit if you search for "python 3.0" in the
search box on python.org...)
Oka
English Win2K Platform SDK. Don't know of any *good* way to
figure out the keys in a version-agnostic manner. Suggestions welcome...
(2) I don't now what people mean when talking about "msvcr71.lib".
There's no such file on my machine. BUT there IS a "msvcrt.
Hi,
I am trying to fix the following problem:
1) I have a gui thread + a background thread that intantiates a bdb child.
2) When I wish to quit in the middle of a debugged program, I roughly do the
following:
2.a) set_quit()
2.b) kill my bdb child
2.c) stop my background thread
I notice that
>>and it was the only interpreter I've ever used that had no compilation
>>phase whatsoever) is no easier to deal with than compiled C. Ditto for
>>the various flavors of LISP I've worked with.
I do find working with an interpreter easier than with a compiler. A
Hi all,
while playing with PBP/mechanize/ClientForm, I ran into a problem with
the way htmllib.HTMLParser was handling encoded tag attributes.
Specifically, the following HTML was not being handled correctly:
Small (6)
The 'value' attr was being given the escaped value, not the
correct unescaped
Whoops! Forgot an executable example ;).
Attached, and also available at
http://issola.caltech.edu/~t/transfer/test-enc.py
http://issola.caltech.edu/~t/transfer/test-enc.html
Run 'python test-enc.py test-enc.html' and note that
htmllib.HTMLParser-based parsers give different outpu
[EMAIL PROTECTED] wrote:
Hi all,
I've been wondering if there's anything on the drawing board about
patching distutils/msvccompiler.py so that it can compile Python
extensions using the free Visual C++ toolkit instead of the entire
Visual C++ development environment.
I've
ow to do it?
TIA
Zunbeltz
____
Mike C. Fletcher
Designer, VR Plumber, Coder
http://www.vrplumber.com
http://blog.vrplumber.com
--
http://mail.python.org/mailman/listinfo/python-list
I'm struggling myself and have bought:
"Mastering Regular Expressions"
2nd Edition,
O'REILLY
Jeffrey E. F. Friedl
I covers the reg exp concepts + applications in various languages (mostly PERL
but some Python also)
--
*****
Philippe C. Martin
SnakeCard L
where you'd find it.
Many 3D modelers will let you create nurbs surfaces. IIRC Rhino was the
pre-eminent NURBs-focused modeler a few years ago.
Good luck,
Mike
____
Mike C. Fletcher
Designer, VR Plumber, Coder
http://www.vrplumber.com
http://b
Sorry but I really feel this incredible waste of energy is polluting an,
otherwise, excellent and helpful mailing list.
Best regards,
Philippe
--
http://mail.python.org/mailman/listinfo/python-list
do source[:] = result[:] with any of those patterns.
If you really do need/want in-place modification, these patterns are
quite serviceable in many instances:
# keep in mind, scans list multiple times, can be slow
while 'e' in source:
source.remove('e')
or (and th
;) ...
>>> def ishwor( source ):
... for item in source:
... if item == 'd':
... source.remove( item )
...
>>> d = ['a','b','c','d','e']
>>> ishwor( d )
>>> d
['a
, but
I added a 'QUIT-STYLE' command in my script when I want the thread to exit so
it wakes up.
Regards,
Philippe
--
*****
Philippe C. Martin
SnakeCard LLC
www.snakecard.com
*
--
http://mail.python.org/mailman/listinfo/python-list
Fredrik Lundh wrote:
Mike C. Fletcher wrote:
yeah actually i saw what Fedrik had to say above. I created a sliced
copy of the l & did my homework within the for loop
You might want to check it again before you hand it in ;) ...
...
that's not the code he quoted in the
>> On Red Hat 9, Python is installed by default and it's version is 2.2.2
>> If I want to upgrade Python to 2.3.4(newer version), how could I do?
>> If I compile source code of Python, how do I uninstall the old version?
>> I tried rpm packages but failed with dependence.
>I didn't try the rpm's.
Hi,
I am looking for an eric3/linux compatible alternative to checking code
metrics (ex: true lines of code count)
Regards,
Philippe
--
http://mail.python.org/mailman/listinfo/python-list
>>I don't know what "eric3/linux compatible" might be, I'm not sure
>>what this would be an alternative _to_, and I don't know what you
>>mean by "true" lines of code count, but the only thing I've
>>noticed lately that counts lines of Python code, and I'm fairly
>>sure it would run fine on Linux,
pylint looks good!
thanks
Philippe
--
http://mail.python.org/mailman/listinfo/python-list
Hi all,
just spent some time playing with cookielib in Python 2.4, trying
to get the cookielib example [0] to work with my mailman admindb page.
The problem was that cookies weren't getting saved.
The issue turned out to be that mailman sends out RFC 2965 [1] cookies,
which are by default rejected
advice or request about a 2nd edition of the
: Nutshell, this is the right time for y'all to let me know. Feedback is
: welcome, either privately or right here. Thanks in advance -- _and_
: apologies in advance because I know I just won't be able to accomodate
: all the requests/advic
lib == 'optimized'
> from myModule_op import *
Suggestion: Maybe you use builtin `__import__` to load a module ? Note
that in this way, you'll have to use the module name prefix.
--
Swaroop C H
Blog: http://www.swaroopch.info
Book: http://www.byteofpython.info
--
http://mail.python.org/mailman/listinfo/python-list
On 22 Mar 2005 11:44:03 -0500, Roy Smith wrote:
> A tuple, a dict, and a list,
> And whitespace which mus'n't be missed.
> Imported together,
> And stirred with a feather,
> Yields a language whose name must be hissed!
Nice! +1
--
Swaroop C H
Blog: http://www.
nt in students]
['Jill', 'John']
>>>
See `help(list.sort)` for details.
--
Swaroop C H
Blog: http://www.swaroopch.info
Book: http://www.byteofpython.info
--
http://mail.python.org/mailman/listinfo/python-list
p://pygtkmvc.sourceforge.net/index.php/Main/Features
--
Swaroop C H
Blog: http://www.swaroopch.info
Book: http://www.byteofpython.info
--
http://mail.python.org/mailman/listinfo/python-list
ster.com/JavaScript/Scripts_and_Programs/Calendars/
IMHO, using Javascript is a better idea for this particular purpose
instead of writing a lot of checking in Python.
--
Swaroop C H
Blog: http://www.swaroopch.info
Book: http://www.byteofpython.info
--
http://mail.python.org/mailman/listinfo/python-list
project I would
> try to make a IRCbot.
I am not sure if you want to write the program completely from scratch.
If not, you could perhaps use the Twisted IRC module to do most of your work :)
http://twistedmatrix.com/documents/current/api/twisted.protocols.irc.html
Regards,
--
Swaroop C H
Blo
y?
Also, why not simply use Decimal('1.000') + Decimal('0.111') ?
--
Swaroop C H
Blog: http://www.swaroopch.info
Book: http://www.byteofpython.info
--
http://mail.python.org/mailman/listinfo/python-list
sed as a placeholder so that you can add code later.
> why and when we should inherit Object?
You can inherit from Object if you want to have a 'new-style class'.
See http://www.python.org/doc/newstyle.html
--
Swaroop C H
Blog: http://www.swaroopch.info
Book: http://www.byteofp
n artefact of how we store and process the results of the
TwistedSNMP queries, not TwistedSNMP itself.
BTW, more detail in a question (what result you got, what result you
expected, what you did to get the result) is generally a good idea.
HTH,
Mike
o explicitly
return this"""
return self.sg
if __name__ == "__main__":
MainFunction( TestContext )
There are other retained-mode/scenegraph engines available besides
OpenGLContext, you can find a listing of some of them here:
http://www.vrplumb
On Apr 1, 2005 8:14 PM, Greg Lindstrom <[EMAIL PROTECTED]> wrote:
> How do I read the data from a file in a zip archive?
http://www.devshed.com/c/a/Python/Python-UnZipped
Regards,
--
Swaroop C H
Blog: http://www.swaroopch.info
Book: http://www.byteofpython.info
--
http://mail.p
I have a program named "octave" (a Matlab clone). It runs in a terminal,
types a prompt and waits for the user to type something. If I try
# Run octave.
oct = subprocess.Popen("octave", stdin=subprocess.PIPE)
# Run an octave called "startup".
oct.communicate("startup")
# Change directory inside o
x27;t have an answer to your particular question, but maybe you can
have a look at how the HarvestMan works:
http://freshmeat.net/projects/harvestman
Regards,
--
Swaroop C H
Blog: http://www.swaroopch.info
Book: http://www.byteofpython.info
--
http://mail.python.org/mailman/listinfo/python-list
x27;t find anything ...
>
> bye
____
Mike C. Fletcher
Designer, VR Plumber, Coder
http://www.vrplumber.com
http://blog.vrplumber.com
--
http://mail.python.org/mailman/listinfo/python-list
On Apr 4, 2005 10:06 PM, Terry Reedy <[EMAIL PROTECTED]> wrote:
> > what book or books on regexes
> A standard is Mastering Regular Expressions, 2nd ed, by xxx (sorry, forget)
Mastering Regular Expressions, by Jeffrey Friedl
See http://www.regex.info/
Regards,
--
Swaroop
7;t).
You've just discovered the only limitation of Python (in my view) - it
doesn't have a module repository to rival CPAN.
AFAIK, there isn't any reliable way to call Perl modules from Python.
--
Swaroop C H
Blog: http://www.swaroopch.info
Book: http://www.byteofpython.info
--
http://mail.python.org/mailman/listinfo/python-list
#! /usr/bin/env python
"""Should this program take 4.3 seconds to run? I have a Linux PC with
an AMD Athlon XP 2000+ chip (1.7Gh). I use Python 2.4.1 and numarray
1.2.3, both compliled from source."""
import time, numarray
from numarray.numerictypes import *
nested = []
for i in range(8):
Steven Bethard wrote:
> As mentioned, this has nothing to do with numarray, and everything to
> do with your inexplicable use of lists. Why don't you just write this
> as:
>
> arr = numarray.ones((8, 8, 256, 256), Float64)
The code I posted was simplified from a larger program which I have now
re
he out-of-favour functional form for the mapping.
Good luck,
Mike
____
Mike C. Fletcher
Designer, VR Plumber, Coder
http://www.vrplumber.com
http://blog.vrplumber.com
--
http://mail.python.org/mailman/listinfo/python-list
Hi,
I have a python script I wish to call from various browsers (IE; Mozilla,
Firefox ..) on Windows & Linux.
I read that IE had the capability to embedd Python scripts, but what about the
others ?
Regards,
Philippe
--
*
Philippe C. Martin
Snake
Hi,
>> What do you mean ? Is that a client-side or server-side script ?
Client side
>>Where ?
Programming Python - O'Reilly - 2nd edition - by Mark Lutz - Paragraph
"Teaching IE about Python" - Pages 922-925
Regards,
Philippe
--
http://mail.python.org/mailman/listinfo/python-list
Since I need to access a local/client device from the page and that I wish
to be cross-platform; does that mean Java is my only way out ?
Regards,
Philippe
Neil Hodgson wrote:
> Philippe:
>
>> I read that IE had the capability to embedd Python scripts, but what
>> about the others ?
>
>
Neil,
Would Jpython let me do that ?
Would java let me call an external Python script - which in turn would
access my device ?
Thanks
Philippe
Neil Hodgson wrote:
> Philippe:
>
>> Since I need to access a local/client device from the page and
>> that I wish to be cross-platform; does that m
I'll take a lok, thanks
Roel Schroeven wrote:
> Philippe C. Martin wrote:
>
>> Since I need to access a local/client device from the page and that I
>> wish to be cross-platform; does that mean Java is my only way out ?
>
> Or you could try Jython (http://w
nt-side web page. Either way (plug-in or java
> applet with privileges) your user will have to agree to give access to
> the hardware.
>
> -Jim
>
> On 4/15/05, Philippe C. Martin <[EMAIL PROTECTED]> wrote:
> > Neil,
> >
> > Would Jpython let me do that ?
>
can begin to debug it.
Thanks for any information,
Mike
--
Mike C. Fletcher
Designer, VR Plumber, Coder
http://www.vrplumber.com
http://blog.vrplumber.com
--
http://mail.python.org/mailman/listinfo/python-list
I do not want to pollute the debate but:
-) I remember a software QA managanager responsible for "C" coding rules
also not allowing us to use 'break', 'continue', or 'return' (in the middle
of a function).
Although I find them 'cleaner' t
Loop bodies (for break)
Grant Edwards wrote:
> On 2005-04-20, Philippe C. Martin <[EMAIL PROTECTED]> wrote:
>
>> Although I find them 'cleaner' than goto, would not use goto,
>> and certainly do use 'return' in the middle of functions, I
>> als
How about rerouting stdout/err and 'popening" something like
/bin/find -name '*' -exec
a_script_or_cmd_that_does_what_i_want_with_the_file {} \;
?
Regards,
Philippe
fuzzylollipop wrote:
> du is faster than my code that does the same thing in python, it is
> highly optomized at the os leve
Hi all,
>
> I am new to Python and desperated to look for a good Python debugger.
> I mean a debugger with source coding tracking. For C/C++, emacs and
> gud offers execellent development env. The source code tracking is
> extremely useful for recursive functions.
>
> I have
lden wrote:
> Philippe C. Martin wrote:
>> I do not want to pollute the debate but:
>>
>> -) I remember a software QA managanager responsible for "C" coding rules
>> also not allowing us to use 'break', 'continue', or 'return' (in the
>>
I have a PC with Debian sid installed. I install all my Python stuff in
/usr/local. I just installed numarray 1.3.1. Blaslite and lapacklite
were compiled. Did the installation process search for blas and lapack?
--
http://mail.python.org/mailman/listinfo/python-list
Does that mean you are using C++/C# and not Python ?
I also guess you do not wish MFC and wxWindows to coexist in the same .exe
as the reasons for conflict are many (GDI port, main event loop .)
Then do you simply wish to "map" your wxindows calls to equivalent MFC calls
with so
I never managed to link my python extensions (mingw .a) with python and
broke down and bought Visual/C++ as it is the compiler used by Python.
Yet some people seem to have managed:
http://uucode.com/texts/python-mingw/python-mingw.html
Regards,
Philippe
Jack Diederich wrote:
> On Sat,
How about popen of 'uname -r' ?
Regards,
Philippe
googleboy wrote:
> Hi there.
>
> I am writing a little app tha tI would like to make cross-platform
> (debian, RH, Fedora, Solaris, AIX, etc)
>
> Originally I decided to check what uname returned, as I didn't think it
> mattered beyond the de
Well,
At least I discovered os.uname :-)
Thanks,
Philippe
Sion Arrowsmith wrote:
> Philippe C. Martin <[EMAIL PROTECTED]> wrote:
>>How about popen of 'uname -r' ?
>
> os.uname()[2] is probably a better way (ie it doesn't spawning
> another process) of
If you're in need of a GUI, then wxPython might be your cross-platform
printing solution.
Regards,
Philippe
David Isaac wrote:
>> Alan Isaac wrote:
>> > What is the current best practice for cross platform printing of
> PostScript
>> > files from Python?
>
> "Warren Postma" <[EMAIL PROTECTED
Hi,
For some reason, Eclipse automatic search for updating existing features
does not see it
Regards,
Philippe
Fabio Zadrozny wrote:
> Hi All,
>
> PyDev - Python IDE (Python development enviroment for Eclipse) version
> 0.9.3 has just been released.
>
> Check the homepage (http://py
recationWarning: Non-ASCII character '\x90' in file
> C:\Python24\python.exe on line 1, but no encoding declared; see
> http://www.python.org/peps/pep-0263.html for details
> File "C:\Python24\python.exe", line 1
> MZ?$,000$0 0n.pdbAÂ330ÂÂ3Â::0Â3ÂÂ3Â
>
This is highly frustrating !!
Did Athena come to help or not ?
Christos TZOTZIOY Georgiou wrote:
> On Mon, 25 Apr 2005 10:32:11 -0400, rumours say that rbt
> <[EMAIL PROTECTED]> might have written:
>
>>I do not seek to provoke. Sorry if my question comes across that way to
>>you.
>
> Thank
Suppose arr is a two dimensional numarray array. Suppose we do the
following:
def rowsort(arr):
a = arr.tolist()
a.sort()
return numarray.array(a)
Can this sort be done efficiently in numarray? This function is called
"rowsort" in MatLab.
--
http://mail.python.org/mailman/listinfo/py
I really like eclipse + pydev
Regards,
Philippe
monkey wrote:
> Read through python site for programming tool, really plenty of choices
> :-) (For c++, I just can't breath with very very limited choices)
>
> Tried Spe, it come with wxGlade built-in very nice(is Spe still a
(a, b, ndx):
> - if a[ndx] < b[ndx]:
> -return -1
> -elif a[ndx] > b[ndx]:
> - return 1
> -else:
> -return 0
> -
> -def cmp_0(a, b):
> -return cmp_index(a, b, 0)
> -
> -def cmp_1(a, b):
> -return cmp_index(a, b, 1)
>
justin walters writes:
> Sorry about the top posting. I'm new to mailing lists. I should just reply
> to the python-list@python.org address then?
>
> Also, thank you for the generator clarification.
> On Mar 8, 2016 9:09 AM, "jmp" wrote:
^ that's top posting always reply inline or at the bo
On Friday, October 9, 2009 12:12:54 PM UTC+2, Gabriel Genellina wrote:
> En Fri, 09 Oct 2009 06:36:45 -0300, Rob Garrett
> escribiï¿oe:
>
> > I'm trying to get gnuplot to display multiple data series on a single
> > plot using gnuplot in python. I've searched around and haven't found
> > a sol
code to run on both Py2 and Py3.
NINJA-IDE (an open source Python IDE) will lint your code so it'll run
in both.
--
Jason C. McDonald (CodeMouse92)
[CEO, Lead Dev @ MousePaw Games]
--
https://mail.python.org/mailman/listinfo/python-list
few dozen more "object systems" out
there. You'll also likely find about a thousand metaclasses these days.
HTH,
Mike
--
____
Mike C. Fletcher
Designer, VR Plumber, Coder
http://www.vrplumber.com
http://blog.vrplumber.com
--
h
Dear Team,
I am working as a software analyst at ExxonMobil. I received a software request
for Python Imaging Library 1.x and the user needs a 64bit setup file for Python
2.7.2. Can I download it somewhere?
Thanks in advance.
Best Regards,
Karina Pinter
ExxonMobil BSC Hungary Kft.
Software A
named method in the instance?
Anyway, I personally don't see this as worth the breakage.
Just my $0.02,
Mike
--
Mike C. Fletcher
Designer, VR Plumber, Coder
http://www.vrplumber.com
http://blog.vrplumber.com
--
http://mail.python.org/mailman/listinfo/python-list
On 11-10-26 05:12 AM, Vinay Sajip wrote:
> Mike C. Fletcher vrplumber.com> writes:
>
>> I actually consider .warning() a nit :) . After all, it's 3 extra
>> characters :) , and *who* actually reads documentation instead of just
>> poking around and finding
se you could just use the logging key as well
as a piece of data. I'll withdraw the suggestion that it is not a
trivial thing to add to 2to3, though I'll leave the implementation to
someone else.
Have fun,
Mike
--
____
Mike C. Fletcher
Desi
eliae dumps to produce visualizations of the
memory used in the process.
HTH,
Mike
https://launchpad.net/meliae
http://www.vrplumber.com/programming/runsnakerun/
--
Mike C. Fletcher
Designer, VR Plumber, Coder
http://www.vrplumber.com
http://
rom pylab import *
plot([0,0],[1,1],label='Ubuntu 11.10')
Before I upgraded to 2.7.2+ / 4 OCt 2011, the following code added a
comment line with a legend.
Now, the same code makes the legend appear "off-screen", ie way
outside the axes limits.
Can anyone help? And/or is there a new way to add a ti
"""
Before I upgraded to 2.7.2+ / 4 OCt 2011, the following code added a
comment line to an axis legend using matplotlib / pylab.
Now, the same code makes the legend appear "off-screen", ie way
outside the axes limits.
Can anyone help? And/or is there a new way to add a title and footer
to the le
some reason the process isn't reading your input fast
enough). I think everyone winds up with their own wrapper around
subprocess after they use it for more than a short period...
HTH,
Mike
--
Mike C. Fletcher
Designer, VR Plumber, Coder
http://www.vrplumber.com
http://blog.vrplumber.com
--
http://mail.python.org/mailman/listinfo/python-list
r is asking for .shx will allow it.
>If somebody wants to help me :-)
>Thanks.
>
>
HTH,
Mike
--
Mike C. Fletcher
Designer, VR Plumber, Coder
http://www.vrplumber.com
http://blog.vrplumber.com
--
http://mail.python.org/mailman/listinfo/python-list
er's Bonanza"
Seperatly: USB needn't be so hard... This little board of tricks
http://www.dlpdesign.com/usb/usb245.shtml gives you a parallel interface
from USB 1.1, and a C library on the PC (which can be accessed from
Python with ctypes) - data rate is similar to the parallel port,
Isaac T Alston ([EMAIL PROTECTED]) wrote:
: Thanks for everyone's tips and hints. I WILL MAKE THIS WORK! I think I'll
: take your advice and use the serial port instead of the parallel port - I
: won't have that much data to send (in comparison with, for example,
: industrial level applications). A
program, you need:
Familiarity with the standard UNIX commands
Linux (other UNIX systems may work)
Python 2.4 or later (2.2 or 2.3 may work)
Experience programming with Python
To know how to compile C programs (preferably with gcc)
Warning: this program is new, buggy and command-line
oriented.
--
http://mail.python.org/mailman/listinfo/python-list
Hi,
Is there any tutorial available for python-xslt processing.
It would be really helpful
regards
prasad chandrasekaran
This message contains information that may be privileged or confidential and is
the property of the Capgemini Group. It is intended only for the person to whom
it is addre
Do any of the Python GUIs have a super-high-level widget that displays a
directory tree? Most file managers or editors have this type of window.
--
http://mail.python.org/mailman/listinfo/python-list
?view=markup
Note, however, that if you goal is to create a simple C-level pointer of
machine ints you'll need to use Numpy or a similar system that
implements such a type.
Have fun,
Mike
ankit wrote:
>Is it possible to limit the size of list in python.
>I want to make list of 5 el
le that actually does the incremental loading, you
could use that to produce a view by writing code to display the results
statically.
HTH,
Mike
--
Mike C. Fletcher
Designer, VR Plumber, Coder
http://www.vrplumber.com
http://blog.vrplumber.com
--
http://mail.python.org/mailman/listinfo/python-list
Brian Cole wrote:
>Thanks for the tip. I got the following error message when trying to
>run your profiler.
>
>
...
> File "c:\Documents and Settings\coleb2\My
> Documents\software\Python24\Lib\site
>-packages\runsnakerun\hotshotreader.py", line 95, in loadHots
Chaos ([EMAIL PROTECTED]) wrote:
: He is the code #Actions here
: myCol = (0.3 * image.GetRed(thisX, thisY)) + (0.59 *
: image.GetGreen(thisX, thisY)) + (0.11 * image.GetBlue(thisX, thisY))
: if myCol < darkestCol:
:darkestCol = myCol
:possX = thisX
:possY = thisY
You really don't wa
The "rebase" process worked. Thanks, Jason. The other previously posted solution of uninstalling and reinstalling Python did not.
On 8/8/06, Jason Tishler <[EMAIL PROTECTED]> wrote:
Juan C.,On Mon, Aug 07, 2006 at 11:47:33AM -0700, jcmendez wrote:> Hello everyone. Trying
around, but generally people are either focused on making it look good
or making it editable.
Good luck,
Mike
--
Mike C. Fletcher
Designer, VR Plumber, Coder
http://www.vrplumber.com
http://blog.vrplumber.com
--
http://mail.python.org/mailman/listinfo/python-list
Hi Robin,
You may want to use a spell checker for announcements and for the
wxpython.org website. For example, the first paragraph of your
announcement contains the words "plust" and "pacakges", and the word
"pacakge" can also be found on the following pages:
www.wxpython.org/download.php
www.wxp
S that are
waiting for me to get my posterior in gear with Win32 testing to be
released. Not sure if that would change anything for you, though.
Good luck,
Mike
--
Mike C. Fletcher
Designer, VR Plumber, Coder
http://www.vrplumber.com
http://blog.vrplumber.com
--
http://mail.python.org/mailman/listinfo/python-list
Hi all,
I'm wondering what would be the best way to write an XML-RPC server
using mod_python with Apache 2.0. I want the mod_python environment
because the rest of my project is web-based, and Apache gives me
multi-threading and everything.
My first attempt implements XML-RPC introspection. Pleas
Just in case anybody has the same problem, here's my first attempt at
implementing a subset of the PNG spec in pure Python. I license it to
you under the terms of the GNU GPL.
http://trac.browsershots.org/browser/trunk/shotfactory/lib/image/png.py
It encodes RGB images with 24 bits per pixel into
> You should really also include the alpha channel. Without that, PNG is
> crippled IMHO.
I have now added simple transparency (marking one color as transparent
with a tRNS chunk). If anybody wants full alpha channel support, ask
kindly or send me a patch. I would like to avoid duplicating all the
Alan Isaac schrieb:
> It's your code, so you get to license it.
> But if you wish to solicit patches,
> a more Pythonic license is IMHO more likely
> to prove fruitful.
What license would you suggest? After some reading at [1] and [2] and
[3], I found that the Academic Free License (version 2.1) a
The MIT license is enticingly short and simple, thank you for the tip.
I have now decided to license my project (including the pure python PNG
library) under the Apache License 2.0 which is less restrictive than
the GPL in terms of sublicensing. The Apache License looks modern and
well-maintained
> Just in case anybody has the same problem, here's my first attempt at
> implementing a subset of the PNG spec in pure Python. I license it to
> you under the terms of the GNU GPL.
Update: the code is now licensed under the Apache License 2.0.
> http://trac.browsershots.org/browser/trunk/shotfac
601 - 700 of 1183 matches
Mail list logo