Re: Cross platform Python app deployment

2007-07-30 Thread Benjamin Niemann
allows you to create rpm packages. HTH -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://pink.odahoda.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Creating a daemon process in Python

2007-02-21 Thread Benjamin Niemann
-- Benjamin Niemann Email: pink at odahoda dot de WWW: http://pink.odahoda.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Creating a daemon process in Python

2007-02-21 Thread Benjamin Niemann
Of course, your mileage may vary. That's not a daemon process (which are used to execute 'background services' in UNIX environments). -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://pink.odahoda.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: calling php function from python

2007-02-14 Thread Benjamin Niemann
the CGI version of the PHP interpreter. E.g. os.system('/usr/bin/php mms.php') or using the subprocess module, if you want to pass some data to the script (using stdin/out). As long as no remote PHP server is involved this is easier and perhaps even faster than the RPC approach... -- Benjamin

Re: distutils: renaming setup.py ok?

2007-02-07 Thread Benjamin Niemann
-- Benjamin Niemann Email: pink at odahoda dot de WWW: http://pink.odahoda.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Inheriting str object

2007-02-05 Thread Benjamin Niemann
functionality. Don't know, if this is possible at all, but usually it's not a good idea to mess with the bowels of Python unless you have some greater surgical skills. HTH -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://pink.odahoda.de/ -- http://mail.python.org/mailman/listinfo/python

Re: marshal.loads ValueError

2007-01-31 Thread Benjamin Niemann
objects from/to strings. marshal.loads() tries to deserialize an encoded string back into a python object - which does not make sense here. What you probably want is: exec data in my_module.__dict__ HTH -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://pink.odahoda.de/ -- http

Re: Is there a better way to implement this:

2007-01-22 Thread Benjamin Niemann
() except thread_finished: print Timeout return ftimed (test, 30) print Script finished -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://pink.odahoda.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: html + javascript automations = [mechanize + ?? ] or something else?

2007-01-16 Thread Benjamin Niemann
this is done in detail is a windows issue. You may find help and documentation in win specific group/mailing list, msdn, ... You can usually translate the COM calls from VB, C#, ... quite directly to Python. HTH -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://pink.odahoda.de

Re: UnboundLocalError

2006-11-09 Thread Benjamin Niemann
difficult. Is number() (the global one) a function or class. I guess it's a function, so I would suggest to name it 'get_number' (and same for 'get_user_guess') - this makes the code more descriptive. Should it really be a class, a common convention is to capitalize it 'Number()'. HTH -- Benjamin

Re: Deprecation in String.joinfields()

2006-09-25 Thread Benjamin Niemann
want should be written as: newname = ..join(li[:-1]) HTH -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://pink.odahoda.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Can I inherit member variables?

2006-09-21 Thread Benjamin Niemann
print self.weight, self.colour, self.length HTH -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://pink.odahoda.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Can I inherit member variables?

2006-09-21 Thread Benjamin Niemann
LorcanM wrote: Benjamin Niemann wrote: You'll have to invoke the __init__ method of the superclass, this is not done implicitly. And you probably want to add the weight and colour attributes to your subclass in order to pass these to the animal constructor. class fish(animal): def

Re: why a main() function?

2006-09-18 Thread Benjamin Niemann
function. Additionally I do usually add an 'argv' argument to main() which I use instead of sys.argv, so I can easily test it with different arguments. -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://pink.odahoda.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: time.clock()

2006-07-14 Thread Benjamin Niemann
third of the time on this process and the rest is used for other processes (e.g. updating the display). What you need is time.time(), if its precision is sufficient. -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://pink.odahoda.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: MySQLdb not updating rows

2006-06-28 Thread Benjamin Niemann
characters in tc, resulting in a possibly opened door for SQL injection attacks. -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://pink.odahoda.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: urllib behaves strangely

2006-06-12 Thread Benjamin Niemann
/wiki/Commons%3aFeatured_pictures/chronological', perhaps urllib is stricter than your browsers (which are known to accept every b**t you feed into them, sometimes with very confusing results) and gets confused when it tries to parse the malformed URI. -- Benjamin Niemann Email: pink at odahoda

Re: urllib behaves strangely

2006-06-12 Thread Benjamin Niemann
Benjamin Niemann wrote: Gabriel Zachmann wrote: Here is a very simple Python script utilizing urllib: import urllib url = http://commons.wikimedia.org/wiki/Commons:Featured_pictures/chronological; print url print file = urllib.urlopen( url ) mime

Re: GUI viewer for profiler output?

2006-05-23 Thread Benjamin Niemann
read (using a script called hotshot2calltree, which is part of KCachegrind). If anyone has a more direct solution, I'd be interested, too :) -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://pink.odahoda.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Python 3.0 or Python 3000?

2006-04-10 Thread Benjamin Niemann
as a time way down the road... The next major version of Python will be: Python PI (and each build will add another digit... 3.1, 3.14, 3.141, ...) That's actually the versioning scheme of TeX, currently being at 3.141592 -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://pink.odahoda.de

Re: Why did someone write this?

2006-04-07 Thread Benjamin Niemann
just have not found the right part of the doc: http://docs.python.org/lib/module-sys.html#l2h-337 -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://pink.odahoda.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: import random module

2006-03-22 Thread Benjamin Niemann
the stdlib). 'import random' will import the script itself (not the random module from the stdlib), which is not what you want. -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://pink.odahoda.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Python version of XMLUnit?

2006-03-06 Thread Benjamin Niemann
(using py.test, if it matters). http://www.logilab.org/projects/xmldiff You'd still have to integrate this into your test framework though... And I'll have a look at XMLUnit - seem's like something I could use for my current project ;) -- Benjamin Niemann Email: pink at odahoda dot de WWW: http

Re: Another stupid newbie question

2006-02-17 Thread Benjamin Niemann
= random() if x == mx: print x else: print 'No luck,', x Also note that random() returns a float and it is *very* unlikely that the condition x == mx will ever come true -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://www.odahoda.de/ -- http://mail.python.org/mailman

Re: Apparent eval() leak for python 2.3.5

2006-02-17 Thread Benjamin Niemann
(prerelease) (Debian 4.0.2-4)] on linux2 python2.4 seems to be unaffected. Python 2.4.2 (#2, Nov 20 2005, 17:04:48) [GCC 4.0.3 2005 (prerelease) (Debian 4.0.2-4)] on linux2 -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://www.odahoda.de/ -- http://mail.python.org/mailman/listinfo

Re: python encoding bug?

2005-12-31 Thread Benjamin Niemann
if the input encoding was different. Is this a known behaviour, or I discovered a terrible unknown bug in python encoding implementation that should be immediately reported and fixed? :-) happy new year, -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://www.odahoda.de/ -- http

Re: can modules be dynamically reloaded

2005-11-16 Thread Benjamin Niemann
you import a module, programatically edit it, then have the file reload the module? Does anyone have any ideas about this? Steve -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://www.odahoda.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Making a persistent HTTP connection

2005-11-14 Thread Benjamin Niemann
? Performance, network load... -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://www.odahoda.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Python's website does a great disservice to the language

2005-11-01 Thread Benjamin Niemann
Steven D'Aprano wrote: http://www.python.com/ perhaps? Yep, let's make this the new official python site ;) -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://www.odahoda.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: How to translate python into C

2005-10-28 Thread Benjamin Niemann
COMPLETELY the same? if the codes are translated first into C, where can I get the C source? You may have a look at PyPy. I do not know what it exactly can do, but this might be interesting for you: http://codespeak.net/pypy/dist/pypy/doc/faq.html#how-do-i-compile-my-own-programs -- Benjamin

Re: Pickle to source code

2005-10-26 Thread Benjamin Niemann
list, dict, set...): Just unpickle it and call repr() on the resulting object. -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://www.odahoda.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Question about StringIO

2005-10-10 Thread Benjamin Niemann
? Dunno - but as a last resort, you could create a tempfile with a unique name (to be sure, not to override any existing data), dump your output there and later os.unlink() it... -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://www.odahoda.de/ -- http://mail.python.org/mailman

Re: how to get the return value of a thread?

2005-09-09 Thread Benjamin Niemann
,)) # do other stuff, foo is running in background r = fooResult.get() # guaranteed to block until result is available print r -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://www.odahoda.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: ~ after script filename?

2005-09-07 Thread Benjamin Niemann
will learn to simply ignore these files ;) Many file managers have already learnt this lesson and have options to hide such backup files. -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://www.odahoda.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Is my thread safe from premature garbage collection?

2005-09-01 Thread Benjamin Niemann
in advance for any helpful replies! The threading module does already take care of keeping references to all running threads, so there's no need to do it yourself and your threads are safe from being garbage collected. -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://www.odahoda.de

Re: Decrypting GPG/PGP email messages

2005-09-01 Thread Benjamin Niemann
for encrypt/sign every attachment separately... -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://www.odahoda.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Is my thread safe from premature garbage collection?

2005-09-01 Thread Benjamin Niemann
Sion Arrowsmith wrote: In article [EMAIL PROTECTED], Benjamin Niemann [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote: However, in my current project I'm creating a bunch of threads which are supposed to run until they've completed their run() method, and I'm worried that if I do not keep

Re: is there a better way to check an array?

2005-09-01 Thread Benjamin Niemann
expception if field is required and is empty if(product[k] == '' and fieldIsRequired): raise GMError(k + ' is required') if product[k] == '' and k in fieldIsRequired: raise GMError(k + ' is required') -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://www.odahoda.de/ -- http

Re: time.strptime() for different languages

2005-08-31 Thread Benjamin Niemann
the month name using a translation table for English to Dutch month names. Have you tested it with the proper locale setting and strptime(dateString, %c)? I have not ;) -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://www.odahoda.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Dynamic image creation for the web...

2005-08-28 Thread Benjamin Niemann
). -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://www.odahoda.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Dynamic image creation for the web...

2005-08-28 Thread Benjamin Niemann
Tompa wrote: Benjamin Niemann pink at odahoda.de writes: You are almost there. I don't feel so... Your create_image.py does not return anything to the browser yet. Yes, I am aware of that but I do not what to return. First return proper HTTP headers, e.g. sys.stdout.write('Status

Re: Speed quirk: redundant line gives six-fold speedup

2005-08-26 Thread Benjamin Niemann
the chances of hash collisions are pretty low. Or everyone will start optimizing their programs by using long, *random* names ;) -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://www.odahoda.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Warning when doubly linked list is defined gloablly

2005-08-24 Thread Benjamin Niemann
complete example, so we can tell you where the problem is. Try to build a minimal file that reproduces the problem. Often you will find the line causing the error yourself - and the fix might be obvious to you -, if your strip stuff away. -- Benjamin Niemann Email: pink at odahoda dot de WWW: http

Re: DeprecationWarning: Non-ASCII character '\xf3'

2005-08-23 Thread Benjamin Niemann
of the file in order to decode the string literal into an unicode string. -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://www.odahoda.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: loop in python

2005-08-22 Thread Benjamin Niemann
, but in different ways ;) Perhaps you could try to use sys.stdout.write() directly, avoiding the overhead of 'print'. Perhaps there are differences between the (default) output buffering settings of perl and python. -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://www.odahoda.de

Re: Adobe COM with Python

2005-08-19 Thread Benjamin Niemann
(the JS members start with lowercase - e.g. 'properties' -, while COM need uppercase - 'Properties'). -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://www.odahoda.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Save Binary data.

2005-08-19 Thread Benjamin Niemann
, but uncompressed and would bloat JPEGs to a multiple of the original filesize) which supports 'image sequences'. Perhaps a DivX encoder could even support this fileformat directly as input. -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://www.odahoda.de/ -- http://mail.python.org

Re: stopping a python windows service

2005-08-16 Thread Benjamin Niemann
a http client based on select() that allows you to check shutdownEvent.isset() at certain intervals - instead of urlopen which just blocks. -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://www.odahoda.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Compile time checking?

2005-08-13 Thread Benjamin Niemann
, if you drop static typing. -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://www.odahoda.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Help with Regular Expressions

2005-08-10 Thread Benjamin Niemann
+'. Useful for regular expression (because the re module parses the '\X' sequences itself) or Windows pathes (e.g. r'C:\newfile.txt'). And you should append a '$' to the regular expression, because r[EMAIL PROTECTED] would match '[EMAIL PROTECTED]', too. -- Benjamin Niemann Email: pink at odahoda

Re: Compile time checking?

2005-08-10 Thread Benjamin Niemann
Qopit wrote: [snip] My questions are: - Am I missing something with my tester example? - Are there other code-checking options other than PyChecker? Try pylint -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://www.odahoda.de/ -- http://mail.python.org/mailman/listinfo/python

Re: about coding

2005-08-06 Thread Benjamin Niemann
are using another editor, you'll have to search its menus for the proper way to save files as utf-8. -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://www.odahoda.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Putting function references in a Queue

2005-08-06 Thread Benjamin Niemann
will be executed in the thread that is called it of course (and not in the thread that sent the reference to it). -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://www.odahoda.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Py: a very dangerous language

2005-08-05 Thread Benjamin Niemann
Luis M. Gonzalez wrote: This is great! It's absolutely useless, like a real therapist, but it's free! Never heard of Eliza? Even Emacs has it built in (Menu Help - Emacs Psychiatrist). -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://www.odahoda.de/ -- http://mail.python.org

Re: minidom xml non ascii / unicode files

2005-08-05 Thread Benjamin Niemann
. http://blog.ianbicking.org/python-unicode-doesnt-really-suck.html any help will be greatly appreciated thx Marc -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://www.odahoda.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Making a timebomb

2005-08-05 Thread Benjamin Niemann
not sure what will happen then... -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://www.odahoda.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Reliable destruction

2005-08-04 Thread Benjamin Niemann
to setup() and run() from the constructor. -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://www.odahoda.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Reliable destruction

2005-08-04 Thread Benjamin Niemann
overheat and not the core of a nuclear power plant. -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://www.odahoda.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Art of Unit Testing

2005-08-03 Thread Benjamin Niemann
Christoph Zwerschke wrote: Benjamin Niemann wrote: Some (many?) people don't like the unittest module, because it is not very pythonic - nothing to wonder as it has its root in the Java world. That's probably one of the reasons why there are other (more pythonic) unittesting frameworks

Re: Art of Unit Testing

2005-08-03 Thread Benjamin Niemann
Michael Hoffman wrote: Benjamin Niemann wrote: Christoph Zwerschke wrote: Benjamin Niemann wrote: Some (many?) people don't like the unittest module, because it is not very pythonic - nothing to wonder as it has its root in the Java world. That's probably one of the reasons why

Re: trying to parse non valid html documents with HTMLParser

2005-08-03 Thread Benjamin Niemann
adventures, I do not have such a personal relationship with my classes ;) -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://www.odahoda.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: trying to parse non valid html documents with HTMLParser

2005-08-02 Thread Benjamin Niemann
. You might pipe the document through an external tool like HTML Tidy http://www.w3.org/People/Raggett/tidy/ before you feed it into HTMLParser. -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://www.odahoda.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Art of Unit Testing

2005-08-02 Thread Benjamin Niemann
to this topic) and I also had the problem of heavy setup costs. I deal with it by using a script around my testsuite (instead of calling just unittest.main()) that does the setup/teardown of the environment. -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://www.odahoda.de/ -- http

Re: python SMTP server

2005-08-01 Thread Benjamin Niemann
Cliff Wells wrote: On Sun, 2005-07-31 at 13:14 +0200, Benjamin Niemann wrote: But you should be aware of the fact that (if you send mail from a dialup machine without going through a relay server) your mails will quickly be marked as spam - I hope you do not intend to send spam... Yah

Re: python SMTP server

2005-08-01 Thread Benjamin Niemann
Cliff Wells wrote: On Mon, 2005-08-01 at 12:28 +0200, Benjamin Niemann wrote: Cliff Wells wrote: [snip] By using a local SMTP server to proxy, your app can queue up a large amount of mail in a much shorter period. It won't necessarily go out any faster, but at least your app won't

Re: python SMTP server

2005-07-31 Thread Benjamin Niemann
machine without going through a relay server) your mails will quickly be marked as spam - I hope you do not intend to send spam... -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://www.odahoda.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Getting TypeError in Changing file permissions

2005-07-22 Thread Benjamin Niemann
) as the first parameter. What you need is a string with the path to the file. -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://www.odahoda.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Difference between and '

2005-07-21 Thread Benjamin Niemann
== 'That\'s my house' You say: \Hello\ == 'You say: Hello' -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://www.odahoda.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: dictionary as property

2005-07-20 Thread Benjamin Niemann
] And in A.__init__ self.d = WrappedDict(self, {}) You may also subclass WrappedDict from dict... -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://www.odahoda.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Python Regular Expressions: re.sub(regex, replacement, subject)

2005-07-05 Thread Benjamin Niemann
for re.sub(): http://docs.python.org/lib/node114.html -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://www.odahoda.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Lisp development with macros faster than Python development?..

2005-07-05 Thread Benjamin Niemann
a minor fix/customization to: not a good idea. Probably not just for the casual hacker like me, but also for the maintainance phase of a project, when the former lead gurus lost interest and/or employment. -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://www.odahoda.de/ -- http

Re: Existance of of variable

2005-07-04 Thread Benjamin Niemann
of memory, if you try to build a list of (dist, place) tuples. Better use the generator syntax (requires python 2.4): minDist, closestPlace = min(((place.pos-pos).len(), place) for place in galaxy.places.itervalues()) -- Benjamin Niemann Email: pink at odahoda dot de

Re: nested lists - utter newbie

2005-07-01 Thread Benjamin Niemann
side ('[1,2,x]') is evaluated *before* the value is bound to the name 'x' - and at this point there is obviously no name 'x' defined. -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://www.odahoda.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Request for help on naming conventions

2005-06-13 Thread Benjamin Niemann
convention are mostly a matter of personal taste (unless you are working in a larger team, where there are some official conventions that must be followed). So I would say the 'feels right' is the most important factor. -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://www.odahoda.de

Re: Walking through a mysql db

2005-06-04 Thread Benjamin Niemann
dataset (with N starting at 1) or use the 'LIMIT' feature of MySQL: cursor.execute (SELECT * FROM dataset LIMIT %s,1, n) where n is the index of the requested dataset (starting at 0) -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://www.odahoda.de/ -- http://mail.python.org/mailman

Re: write html-headers (utf-8)

2005-05-30 Thread Benjamin Niemann
and it specifies a charset, this will override your meta http-equiv. Often iso-8859-1 is the default charset for the Content-Type header. -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://www.odahoda.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Suggesting methods with similar names

2005-03-30 Thread Benjamin Niemann
. ;) -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://www.odahoda.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: IronPython 0.7 released!

2005-03-24 Thread Benjamin Niemann
signal to noise ratio. -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://www.odahoda.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: IronPython 0.7 released!

2005-03-23 Thread Benjamin Niemann
that J Hugunin didn't announce it himself. Jim Hugunin announced it himself in a keynote at PyCon. You can read a lot about it on Python centric blogs - just one example: http://www.postneo.com/2005/03/23/keynote-ironpython -- Benjamin Niemann Email: pink at odahoda dot de WWW: http

Re: string join() method

2005-03-23 Thread Benjamin Niemann
by the first print. -- Benjamin Niemann Email: pink at odahoda dot de WWW: http://www.odahoda.de/ -- http://mail.python.org/mailman/listinfo/python-list