Michele Petrazzo wrote:
>
import FreeImagePy as FIPY lst_names = ("/tmp/f1.png",
"/tmp/f2.jpg") F = FIPY.freeimage() F.convertToMultiPage(lst_names,
"out.tif", FIPY.FIF_TIFF)
> (0, 'All ok!! File saved on out.tif')
>
Sorry for this bad copy/paste/thunderbird :)
>>> import FreeI
Julien Fiore wrote:
> Thanks for your remark, Sturlamolden.
>
> Is there a free version of the "Visual C++ 2003" compiler available on
> the web? I have found "Visual C++ 2005 Express edition"
> (http://msdn.microsoft.com/vstudio/express/visualc/). According to
> Micrsoft, it replaces VC++2003
> (
Ian Bicking wrote:
> I got a puzzler for y'all. I want to allow the editing of functions
> in-place. I won't go into the reason (it's for HTConsole --
> http://blog.ianbicking.org/introducing-htconsole.html), except that I
> really want to edit it all in-process and in-memory. So I want the
> id
Hello all,
I have released version 0.6 of my functional module, a collection of
higher-order and functional programming tools for Python. Currently
offered are tools for function composition, partial function
application, plus flip, foldl, foldr, scanl and scanr functions.
Two version of the rele
It doesn't think you're on an intel box, it thinks you want to compile
universal libraries, since you installed a universal python.
The problem is likely to be that you haven't installed SDK's for intel
as well as powerpc when you installed Apple's Developer Tools. Do that,
and it should work ...
I see a C/python program that we're using spending a lot of time in
this function, far more than we think it should. What is it?
Thanks in advance! There seems to be nothing (but a bunch of stack
traces) when I google this.
Brett
--
http://mail.python.org/mailman/listinfo/python-list
Generate your function as a string. Be careful to
indent correctly and append \n at line's end. Then
execute the string with exec(name_of_string). Then
edit your string as necessary, and execute again.
An example follows, directly from one of my projects:
# create a "function" to apply on
In article <[EMAIL PROTECTED]>,
NavyJay <[EMAIL PROTECTED]> wrote:
>For such a simple task, I would use MATLAB.
>http://www.mathworks.com/products/matlab/
.
[pertinent Python comments]
.
.
... and some people wo
For a listbox, I would give a width and go with string
formatting. In your case, I guess that what I'll do is
to limit the width to something acceptable, and show
only the tail of the line.
Say, your width is w, then I'll show only the last w-4
chars, preceded by '... ' (ellipsis+space). It might
I've been thinking if there's a point in applying some specific OOP
techniques in Python as we do in other languages.
i.e. we usually define private properties and provide public functions
to access them, in the form of:
get { ... } set { ... }
Should we do the same in Python:
self.__privateAttr
Chris wrote:
> hehe, works a charm, cheers mate.
Beware that if you have a different entry in your hosts file you can match a
different name.
Test it:
- add "127.0.0.2yourhost.yourdomain yourhost" to /etc/hosts
- rerun the code.
You'll see "127.0.0.2" as the result. So take that into acco
basically, you can create new types on the fly using type() with three
arguments:
my_class = type("className",(BaseClass,),class_dict)
then, you can assign this vlass to the golbal namespace using
globals():
globals()["className"] = my_class
In your case, you would need to populate the class_di
Panos Laganakos wrote:
> i.e. we usually define private properties and provide public functions
> to access them, in the form of:
> get { ... } set { ... }
>
> Should we do the same in Python:
>
> self.__privateAttr = 'some val'
>
> def getPrivateAttr(self):
> return self.__privateAttr
>
>
[EMAIL PROTECTED]
> I see a C/python program that we're using spending a lot of time in
> this function, far more than we think it should. What is it?
PyEval_EvalFrame is the heart of the CPython interpreter: it's a very
large function that _implements_ the interpreter, marching through the
byte
Panos Laganakos wrote:
> we usually define private properties and provide public functions
> to access them, in the form of:
> get { ... } set { ... }
>
> Should we do the same in Python:
>
> self.__privateAttr = 'some val'
>
> def getPrivateAttr(self):
> return self.__privateAttr
>
> Or th
John Machin wrote:
> On 27/04/2006 10:38 AM, val bykoski wrote:
> > Hi The List:
> > I have a modeling app where i'm detecting events (in temporal
> > dynamics) applying a set of (boolean) functions - kind of:
> >
> > event_list = "f1 f2 etc".split() # each fi detects a specific event
> > i have
Hi Kent,
Thanks. Great help. It does work now,
and with expressions as well.
my very best,
Val
--
http://mail.python.org/mailman/listinfo/python-list
Tim,
Greatly appreciate your help. You are right - the functions work
from the list; i don't actually need the string with events.
Thanks again - great list and great people...
Val
--
http://mail.python.org/mailman/listinfo/python-list
"gene tani" <[EMAIL PROTECTED]> wrote:
>
> John Bokma wrote:
>> Roedy Green <[EMAIL PROTECTED]> wrote:
>>
>> I leave that up to Xah's ISP/USP and hosting provider to decide :-D
>
> he's solidified position as top troll of 2003-2006
Maybe because people rather post a reply instead of sending an
Question background: I've been using Python as my primary language for several years now and have done all my non-trivial development in Python. I've now got a Mac and want to do some development using the Core * features in OS X in ObjC. I know I could use the PyObjC bindings, but ObjC seems to
Why is that ? to me it makes sense when I see self.__m_var that I'm dealing
with a member variable taht derived classes will not see/access.
Philippe
Steven Bethard wrote:
> Panos Laganakos wrote:
>> we usually define private properties and provide public functions
>> to access them, in the f
it now comes up with the error message
Traceback (most recent call last):
File "C:\Python24\lib\lib-tk\Tkinter.py", line 1345, in __call__
return self.func(*args)
File "C:\Documents and Settings\chris\Desktop\Python\client.py", line
30, in sendMessage
self.sendLine("Test")
AttributeErr
I have some data and I need to put it in a list in a particular way. I
have that figured out but there is " stuff " in the data that I don't
want.
Example:
10:00am - 11:00am: The
Price Is Right
All I want is " Price Is Right "
Here is the re.
findshows =
re.compile(r'(\d\d:\d\d\D\D\s-\s\d\d:\
[Please don't top-post]
Steven Bethard wrote:
> Panos Laganakos wrote:
>> we usually define private properties and provide public functions
>> to access them, in the form of:
>> get { ... } set { ... }
>>
>> Should we do the same in Python:
>>
>> self.__privateAttr = 'some val'
>>
>> def
print '127.0.0.1'
:-P
--
http://mail.python.org/mailman/listinfo/python-list
Ross Ridge wrote:
> Nonetheless, Cygwin applications are not generally considered native
> Win32 applications because of the dependency on CYGWIN1.DLL and the
> related environment. While what you're saying a strictly true, the
> term "native Win32" is used to make a distinction between a port of
I use os.system to call a display program, e.g.
os.system(displayblah blah) to call display. the program starts and
display things I wanted. When I kill display, somehow the python
program don't understand I want to move on, keep calling
os.system(displayblah blah) again and again.
I have to kill
Hi,
Sorry for reposting but I changed my code and received a new error
message so I thought I would try it on the group again. I have a
working server and this is meant to be a chat client using tkinter that
connects to the server and sends messages. However I receive this error
message when I cli
I believe MinGW can link .lib C libraries files from Visual Studio. But
there are no .a for Python24.dll as far as I can tell.
--
http://mail.python.org/mailman/listinfo/python-list
"Chris" <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PROTECTED]
> it now comes up with the error message
>
> Traceback (most recent call last):
> File "C:\Python24\lib\lib-tk\Tkinter.py", line 1345, in __call__
> return self.func(*args)
> File "C:\Documents and Settings\chris\Desktop
sturlamolden wrote:
> Cygwin executables are native windows ".exe files" just like MinGW
> executables. They are built by the same compiler, a port of GCC to 32
> bit Windows originally written by Mumit Khan.
No, Cygwin executables are built using a different port of GCC, the
Cygwin port of GCC.
sturlamolden wrote:
> That is correct. And it is the reson why the MinGW team is working on
> removing the dependency on this CRT.
No one is working on removing MinGW's depency on MSVCRT.DLL.
Ross Ridge
--
http://mail.python.org/mailman/listinfo/python-list
"Thomas Guettler" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
>I like python because it is compatible to old versions.
Python 3 will be a new and mostly improved dialect of Python.
Some 2.x code will run unchanged. Much will not. Transition tools will be
written.
> That's way
sturlamolden wrote:
> I don't think this is safe. MinGW links with msvcrt.dll whereas the
> main Python distribution links with msvcr71.dll (due to Visual C++
> 2003).
In order to make minGW link with msvcr71.dll, edit the text file
c:\mingw\lib\gcc\mingw32\3.2.4\specs
and change "-lmsvcrt" to
"questions?" <[EMAIL PROTECTED]> wrote:
> I use os.system to call a display program, e.g.
>
> os.system(displayblah blah) to call display. the program starts and
> display things I wanted. When I kill display, somehow the python
> program don't understand I want to move on, keep calling
> os.syste
Hi you all,
I am developping a python application which connects to a database
(postresql) and displays the query results on a treeview. In adittion to
displaying the info i do need to implement filtering facility for all the
columns of the treestore/liststore model in order to allow the user a
Warning: Ugly code ahead
import win32con, winioctlcon, winnt
import win32file, win32api
import os, struct
temp_dir=win32api.GetTempPath()
temp1=win32api.GetTempFileName(temp_dir,'rpp')[0]
win32file.DeleteFile(temp1)
os.mkdir(temp1)
temp2=win32api.GetTempFileName(temp_dir,'rpp')[0]
win32file.Delet
On 2006-04-27, Gregor Horvath <[EMAIL PROTECTED]> wrote:
> Chris schrieb:
>> How do I find and print to screen the IP address of the computer my
>> python program is working on?
>>
>
> IP adresses are bound to network interfaces not to computers.
> One Computer can have multiple network interfaces
by the way, iam using pygtk to develop the GUI
Regards.-
--
http://mail.python.org/mailman/listinfo/python-list
Alex Martelli wrote:
> Provides the core msvcrt.lib for msvcr71.dll against which to link
> your extensions. This is critically important, as without it you are
> going to wind up linking against the wrong run-time and will see crashes
> whenever a core object such as a file is shared acro
RunLevelZero wrote:
> 10:00am - 11:00am:
> Here is the re.
>
> findshows =
> re.compile(r'(\d\d:\d\d\D\D\s-\s\d\d:\d\d\D\D:*.*)')
1. A regex remembers everything it matches -- no need to wrap the entire
thing in parens. Just call group() on the returned MatchObject.
2. If all you want is the
Panos Laganakos wrote:
> I've been thinking if there's a point in applying some specific OOP
> techniques in Python as we do in other languages.
Yes - but some of these techniques are somewhat python-specific.
> i.e. we usually define private properties and provide public functions
> to access th
I have just started learning about Python Packages. I know that a
directory must contains the '__init__.py' script to be considered a
Python package, and that this script is executed when the package is
imported.
But what other uses does the '__init__.py' script have? What do you
use it for?
I
Steven Bethard wrote:
> [Please don't top-post]
>
> Steven Bethard wrote:
> > Panos Laganakos wrote:
> >> we usually define private properties and provide public functions
> >> to access them, in the form of:
> >> get { ... } set { ... }
> >>
> >> Should we do the same in Python:
> >>
> >
Panos Laganakos wrote:
> i.e. we usually define private properties and provide public functions
> to access them, in the form of:
> get { ... } set { ... }
>
> Should we do the same in Python:
> Or there's no point in doing so?
>
> Some other techniques come to mind, but I think that Python tends
Fredrik Lundh wrote:
> "questions?" <[EMAIL PROTECTED]> wrote:
>
> > I use os.system to call a display program, e.g.
> >
> > os.system(displayblah blah) to call display. the program starts and
> > display things I wanted. When I kill display, somehow the python
> > program don't understand I want
I seem to vaguely remember that MinGW was going to get its own CRT. And
unless it does, MinGW is a defect compiler for legal resons. It cannot
be legally used.
Microsoft has designated the CRT that MinGW links a system file,
against which no application should link. Insted they have asked that a
C
[EMAIL PROTECTED] wrote:
> But what other uses does the '__init__.py' script have? What do you
> use it for?
__init__.py is used for initialization of the package - similar to
__init__() in a function or class declaration.
One example would be if you create a package with generic database
met
I think I have reached an important moment in my growth as a Python
Developer. I realize now why interfaces aren't really necessary in
Python. :]
Still, I'm designing an application that I want to be extendable by
third-party developers. I'd like to have some sort of documentation
about what behav
I was intriuged by the concept of Python Eggs and some of the work that
has been done on PEAK.
http://peak.telecommunity.com/
However, I think PEAK might be overkill for the particular design I am
considering. Is anyone using just part of PEAK in their Python
development. Are there alternative di
Edward Elliott wrote:
> Panos Laganakos wrote:
>> i.e. we usually define private properties and provide public functions
>> to access them, in the form of:
>> get { ... } set { ... }
>>
>> Should we do the same in Python:
>> Or there's no point in doing so?
>>
>> Some other techniques come to mi
There is no manual that's the problem. The sendLine method is part of
LineReceiver which is part of twisted. It's used to send a message over
the transport link. I can get it working by overriding twisted's
methods for example linereceived() or connectionmade(). But how do I
get it to send a messag
On Apr 27, 2006, at 3:26 PM, [EMAIL PROTECTED] wrote:
> I think I have reached an important moment in my growth as a Python
> Developer. I realize now why interfaces aren't really necessary in
> Python. :]
>
> Still, I'm designing an application that I want to be extendable by
> third-party devel
Will Hurt wrote:
> Hi
> Ive been using midipy in my blender3d python scripts on windowsXP, now
> im trying to run them from ubuntu and i cant find the midipy.py module
> compiled for linux anywhere.
> Is it possible to complie it under linux and how would i go about doing
> it --or--
> Is there an
Philippe Martin wrote:
> Steven Bethard wrote:
>> [Please don't top-post]
>
> OK I won't, is that a general rule? (I've been top posting for quite some
> time now and it is the first time I see that warning)
Yes. Other suggestions you might get are not to bottom post, and certainly
not (as you d
Kent Johnson schrieb:
> Schüle Daniel wrote:
>> and now the obvious one (as I thought at first)
>>
>> >>> lst=[]
>> >>> for i in range(10):
>> ... lst.append(lambda:i)
>> ...
>> >>> lst[0]()
>> 9
>> >>> i
>> 9
>> >>>
>>
>> I think I understand where the problem comes from
>> lambda:i seems
"Grant Edwards" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> On 2006-04-27, Gregor Horvath <[EMAIL PROTECTED]> wrote:
>> Chris schrieb:
>>> How do I find and print to screen the IP address of the computer my
>>> python program is working on?
>>>
>>
>> IP adresses are bound to net
Philippe Martin wrote:
''
On the other hand, foo.__doc__ and foo.__name__ work fine.
(I was going to quote your post but my reader interprets everything after
the two dashes as your sig and ignores it. And I won't bother to fix it.)
--
http://mail.python.org/mailman/listinfo/python-list
[EMAIL PROTECTED] wrote:
> Still, I'm designing an application that I want to be extendable by
> third-party developers. I'd like to have some sort of documentation
> about what behavior is required by the components that can be added to
> extend the application. I'd thought I might try documenting
Edward Elliott wrote:
> Philippe Martin wrote:
> ''
>
> On the other hand, foo.__doc__ and foo.__name__ work fine.
>
> (I was going to quote your post but my reader interprets everything after
> the two dashes as your sig and ignores it. And I won't bother to fix it.)
I'm not sure I understan
Duncan Booth wrote:
> Philippe Martin wrote:
>> Steven Bethard wrote:
>>> [Please don't top-post]
>>
>> OK I won't, is that a general rule? (I've been top posting for quite some
>> time now and it is the first time I see that warning)
>
> Yes. Other suggestions you might get are not to bottom po
bruno at modulix wrote:
> TG wrote:
>> Hmm ... I'm definitely not a python wizard, but it seems to be quite a
>> special case that breaks the rules ...
>
> Yes and no. The primary use case for __new__ was to allow subclassing of
> immutable types. array.array is not immutable, but it's still a sp
Great I will test this out once I have the time... thanks for the quick
response
--
http://mail.python.org/mailman/listinfo/python-list
sturlamolden wrote:
> I seem to vaguely remember that MinGW was going to get its own CRT. And
> unless it does, MinGW is a defect compiler for legal resons. It cannot
> be legally used.
That is simply not true.
> Microsoft has designated the CRT that MinGW links a system file,
> against which no
Hi folks!
As stated in subject, how do I decide wether to inherit or
? Whenever I want to intantiate my derived type, I taked
here, but inheriting from consequently would
be reasonable in cases of pure static objects (i.e. objects/types using
staticmethods exclusively), for whose I would prefer
If you are parsing HTML, it may make more sense to use a package
designed especially for that purpose, like Beautiful Soup.
--
http://mail.python.org/mailman/listinfo/python-list
JUAN ERNESTO FLORES BELTRAN napisał(a):
> can any of you suggest a code example to follow and find out how the
> treeview must be coded in order to allow "multicolumn filtering"???
>
> thanks in advance for your support..
Your question was answered on PyGTK mailing list. Please, don't crosspost.
Sori Schwimmer napisał(a):
> For a listbox, I would give a width and go with string
> formatting. In your case, I guess that what I'll do is
> to limit the width to something acceptable, and show
> only the tail of the line.
>
> Say, your width is w, then I'll show only the last w-4
> chars, prec
I considered that but what I need is simple and I don't want to use
another library for something so simple but thank you. Plus I don't
understand them all that well :)
--
http://mail.python.org/mailman/listinfo/python-list
What Languages to Hate
Xah Lee, 20020718
Dear lisp comrades and other concerned parties,
First, all languages have equal rights. Do not belittle other languages
just because YOUR favorite language is a bit better in this aspect or
that. Different people have different ideas and manners of percep
Addendum:
Recently I ran into this egregious propaganda:
http://www.ibiblio.org/pub/multimedia/video/obp/IntroducingPython.mpg
folks, take a look. This is a significant part how things move in the
computing community.
Xah
[EMAIL PROTECTED]
∑ http://xahlee.org/
Xah Lee wrote:
> What Langu
If what you need is "simple," regular expressions are almost never the
answer. And how simple can it be if you are posting here? :)
BeautifulSoup isn't all that hard. Observe:
>>> from BeautifulSoup import BeautifulSoup
>>> html = '10:00am - 11:00am: >> href="/tvpdb?d=tvp&id=167540528&[snip]>T
On 27 Apr 2006 14:22:03 -0700 "Xah Lee" <[EMAIL PROTECTED]> waved a wand
and this message magically appeared:
> What Languages to Hate
Folks, this guy has moved to pacbell.net (and probably relocated his
website as well).
Send your complaints to:
[EMAIL PROTECTED]
[EMAIL PROTECTED]
--
http:/
r']*>(.*?)'
With a slight modification that did exactly what I wanted, and yes the
findall was the only way to get all that I needed as I buffered all the
read.
Thanks a bunch.
--
http://mail.python.org/mailman/listinfo/python-list
On 27 Apr 2006 14:22:03 -0700, "Xah Lee" <[EMAIL PROTECTED]> wrote,
quoted or indirectly quoted someone who said :
>What Languages to Hate
Come, if you are as experienced as you claim you know that
comp.lang.java.advocacy is the home of language wars and commentary on
them, not comp.lang.java.pro
Alex Buell <[EMAIL PROTECTED]> wrote:
> Send your complaints to:
> abuse at sbcglobal dott net
> abuse at dreamhost dott com
Yup, done. If he's still with dreamhost he probably is in trouble now. If
not, next.
--
John MexIT: http://johnbokma.com/mexit/
Interesting... thank you.
--
http://mail.python.org/mailman/listinfo/python-list
Philippe Martin wrote:
> I'm not sure I understand what you mean ... I did get a strange new
> message from my email client and disabled the signature.
Look again at the post I replied to (great-grandparent of this one). It's
not your sig quote that was the problem.
--
http://mail.python.org/ma
Fabiano Sidler wrote:
> Hi folks!
>
> As stated in subject, how do I decide wether to inherit or
> ? Whenever I want to intantiate my derived type, I taked
> here, but inheriting from consequently would
> be reasonable in cases of pure static objects (i.e. objects/types using
> staticmethods ex
[EMAIL PROTECTED] wrote:
> If you are parsing HTML, it may make more sense to use a package
> designed especially for that purpose, like Beautiful Soup.
I don't know Beautiful Soup, but one advantage regexes have over some
parsers is handling malformed html. Omitted closing tags can wreak havoc.
Edward Elliott <[EMAIL PROTECTED]> wrote:
> [EMAIL PROTECTED] wrote:
>> If you are parsing HTML, it may make more sense to use a package
>> designed especially for that purpose, like Beautiful Soup.
>
> I don't know Beautiful Soup, but one advantage regexes have over some
> parsers is handling ma
That worked! Thank You!
I'd also like to say this group is great at fast accurate responses!
Cheers!
thanks
~jason
--
http://mail.python.org/mailman/listinfo/python-list
Will Hurt a écrit :
> Is there another module which does the same thing available for linux[ie
> i can get raw midi data in as a list] and thats why no-ones bothered to
> compile midipy under linux?
>
> Thanks
> Will
>
I use
http://www.mxm.dk/products/public/pythonmidi/
That's pure python, and
I have seen this question asked a few times but have not seen a
clear answer...
I have a python script that prompts the user for input from stdin via a
menu. I want to process that input when the user types in two characters
and not have to have the user press . As a comparison, in the bash
shell
Kyler Laird wrote:
> Ivan's been working on a problem I've been experiencing with Windows XP
> ("failure to launch"). He sent a new version my way today. I'm going
> to test it tomorrow when I've got some XP users available. If it works
> I'm going to work on putting my changes into a subclass.
In a program I'm writing I have a problem where a bit of text sent over
a network arrives at my server. If the person who sent the text made a
mistake typing the word and pressed backspace the backspace code is
included in the word for example hello is hel\x08lo. The \x08 is the
backspace key. How
Suppose I have the following python program:
def func():
from sys import stderr, exit
try:
f = open("foo", 'r')
except IOError:
print >> stderr, "Input file foo does not exist"
exit(1)
def main():
import sys
if len(args) != 0:
sys.exit
[kyo guan]
> Python version 2.4.3
>
> >>> l=range(50*1024*100)
>
> after this code, you can see the python nearly using about 80MB.
>
> then I do this
>
> >>> del l
>
> after this, the python still using more then 60MB, Why the python don't free
> my
> memory?
It's that you've created 5 million i
> Your question was answered on PyGTK mailing list. Please, don't crosspost.
Where is the pygtk mailing list?
--
http://mail.python.org/mailman/listinfo/python-list
Thomas Guettler <[EMAIL PROTECTED]> writes:
> I like python because it is compatible to old versions.
I like it because it has a documented, manageable procedure for
breaking compatibility with old versions.
> if foo and bar and i>10:
> raise "if foo and bar i must not be greater than 10"
O
hey there,
i have a huge app that connects to MySQL. There are three threads that
are continually connecting and disconnecting to the db. The problem is,
if there is an error, it faults out sometimes without closing the
connection. i connect like this.
db = MySQLdb.connect(host="localhost", user="M
[EMAIL PROTECTED] writes:
> I was intriuged by the concept of Python Eggs and some of the work
> that has been done on PEAK.
>
> http://peak.telecommunity.com/
>
> However, I think PEAK might be overkill for the particular design I
> am considering. Is anyone using just part of PEAK in their Pyt
Thanks for all the useful answers :)
Alot of stuff to take into consideration/chew on. I come up with
similar drawbacks now and then, 'cause some OOP techniques can be made
in Python relatively simpler or plainly different (still simpler
though). Though I am hesitant on how to act on certain occas
Thanks a lot!
it did work!!
:)
--
http://mail.python.org/mailman/listinfo/python-list
Kevin Simmons wrote:
> I have a python script that prompts the user for input from stdin via a
> menu. I want to process that input when the user types in two characters
> and not have to have the user press . As a comparison, in the bash
> shell one can use (read -n 2 -p "-->" CHOICE; case $CHOICE
Scott Simpson wrote:
> def func():
> from sys import stderr, exit
> try:
> f = open("foo", 'r')
> except IOError:
> print >> stderr, "Input file foo does not exist"
> exit(1)
IOError can be raised when foo exists, e.g. if there's a permission problem.
It'
Chris wrote:
> In a program I'm writing I have a problem where a bit of text sent over
> a network arrives at my server. If the person who sent the text made a
> mistake typing the word and pressed backspace the backspace code is
> included in the word for example hello is hel\x08lo. The \x08 is t
Is it possible to store "non-python" files in a directory that serves
as a Python Package? (Like an image file or an XML file.)
Is this allowed for sub-directories that are not Python Packages? In
other words, can I have a Python Package that contains other Python
Packages and also folders that ar
Thanks for your help.
That is exactly what was wrong.
All I had to do was download xcode 2.2.1 and that installed the
universal sdk.
-Chris
On Apr 27, 2006, at 12:31 PM, Simon Percivall wrote:
> It doesn't think you're on an intel box, it thinks you want to compile
> universal libraries, sinc
On 28/04/2006 9:50 AM, Chris wrote:
> In a program I'm writing I have a problem where a bit of text sent over
> a network arrives at my server. If the person who sent the text made a
> mistake typing the word and pressed backspace the backspace code is
> included in the word for example hello is he
101 - 200 of 226 matches
Mail list logo