next python berlin user group meeting / naechstes berliner python treffen

2007-03-30 Thread Stephan Diehl
time: 3.4., 7pm place: c-base info: http://groups.google.de/group/python-berlin -- http://mail.python.org/mailman/listinfo/python-list

Re: Python 3.0 migration plans?

2007-09-28 Thread Stephan Deibel
tually failed? Nothing I've read about 3.0 has alarmed me that much yet, but I've not yet actually tried converting code for it (except a few extension modules, which at least _compiled_ just fine against 3.0). - Stephan -- http://mail.python.org/mailman/listinfo/python-list

Re: "Standard" Full Text Search Engine

2007-10-26 Thread Stephan Diehl
Martin Marcher wrote: > Hello, > > is there something like a standard full text search engine? > > I'm thinking of the equivalent for python like lucene is for java or > ferret for rails. Preferrably something that isn't exactly a clone of > one of those but more that is python friendly in terms

Re: Python does not play well with others

2007-01-24 Thread Stephan Kuhagen
out in them. New kids on the block may be more dynamic (Python really is), but they can learn much from the old guys. Sometimes one should have a look and learn from still good working ancestors... Regards Stephan -- http://mail.python.org/mailman/listinfo/python-list

Re: Python does not play well with others

2007-01-24 Thread Stephan Kuhagen
Dennis Lee Bieber wrote: > Uhm... Unless something has happened that I don't know about, isn't > C# a M$ specific product? Mono? Regards Stephan -- http://mail.python.org/mailman/listinfo/python-list

next berlin python-group meeting fr., 2.2.

2007-01-29 Thread Stephan Diehl
n't done so already, subscribe to http://starship.python.net/cgi-bin/mailman/listinfo/python-berlin for last minute information. If you plan to come, please leave a short notice there, so we know how many people to expect. Cheers Stephan -- http://mail.python.org/mailman/listinfo/python-list

Re: next berlin python-group meeting fr., 2.2.

2007-01-29 Thread Stephan Diehl
Stephan Diehl wrote: > http://starship.python.net/cgi-bin/mailman/listinfo/python-berlin argghhh, wrong link. please try http://starship.python.net/mailman/listinfo/python-berlin -- http://mail.python.org/mailman/listinfo/python-list

Re: A little more advanced for loop

2007-02-09 Thread Stephan Diehl
Horta wrote: > Hi folks, > > Suppose I have to loop over 3 lists being the same size at the same > time and order. How can I do that without using the range() function > or whatever indexing? > > Example using range: > > a = ['aaa', ''] > b = ['bb', ''] > c = ['c', ''] > > for

ANN: Wing IDE 3.0.2 released

2007-11-27 Thread Stephan Deibel
l price to upgrade. -- Stephan Deibel Wingware | Python IDE Advancing Software Development www.wingware.com -- http://mail.python.org/mailman/listinfo/python-list

Re: Active Directory Authentication

2006-05-05 Thread Stephan Diehl
On Fri, 05 May 2006 05:39:08 -0700, D wrote: > Is it possible to have Python authenticate with Active Directory? > Specifically what I'd like to do is have a user enter a > username/password, then have Python check the credentials with AD - if > what they entered is valid, for example, it returns

Re: Dumb-as-rocks WSGI serving using standard library

2006-05-22 Thread Stephan Diehl
On Mon, 22 May 2006 18:18:34 +1000, Ben Finney wrote: [...] > > Everything else that I can find leads to dependencies I don't want for > flexibility I don't need: cherrypy, paste, et al. > > Any suggestions for how to serve up a simple WSGI application with > just the standard library? the easi

Berlin (Germany) Python User Group is meeting on 23.1.

2008-01-21 Thread Stephan Diehl
The Berlin Python User Group is meeting on the 23.1. at newthinking store at 7pm. All details can be found at http://wiki.python.de/User_Group_Berlin. The Berlin Python User Group is planning to meet every two month to talk about Python. Most talking will be done in german, but I can assure you th

Re: appwsgi

2008-02-14 Thread Stephan Diehl
gert wrote: > can my http://appwsgi.googlecode.com/ be on the http://wsgi.org/ page > somewhere please :) you are free to register yourself on wsgi.org and put a link to your software at the appropriate place. It's a wiki, after all. -- http://mail.python.org/mailman/listinfo/python-list

Re: Eurosymbol in xml document

2008-03-04 Thread Stephan Diehl
int for the Euro sign, so u'\u20ac' is the unicode euro sign in python. The different encode calls translate the unicode into actual encodings. What you are seeing in your xml document is the iso-8859-15 encoded euro sign. As Diez already noted, you must make shure, that 1. the whole xml document is encoded in latin-15 and the encoding header reflects that or 2. make sure that the utf-8 encoded euro sign is in your xml document. Hope that makes sense Stephan -- http://mail.python.org/mailman/listinfo/python-list

ANN: Wing IDE 3.0.4 released

2008-03-07 Thread Stephan Deibel
Hi, We're happy to announce version 3.0.4 of Wing IDE, an advanced development environment for the Python programming language. It is available from: http://wingware.com/downloads Version 3.0.4 is a bug fix release that reduces debugger overhead by about 50% per Python instruction executed, impr

Re: Pycon disappointment

2008-03-16 Thread Stephan Deibel
ce as the primary decision criteria, or I'll stop coming. I have to admit, I'll keep coming to PyCon even if all the talks suck abysmally as long as there's good hallway time, open space, BoFs, and sprints. ;-) But, yes, lightning talks are also a critical part of the conf, and woul

socket and DynDNS

2008-10-22 Thread Stephan Schulz
for any input! Bye, Stephan -- -- It can be done! - Please email me as [EMAIL PROTECTED] (Stephan Schulz) -- http://mail.python.org/mailman/listinfo/python-list

Re: static variables in Python?

2008-10-22 Thread Stephan Schulz
__call__(self): self.static_var+=1 return self.static_var fun_with_state = hidden() >>> fun_with_state() 1 >>> fun_with_state() 2 >>> fun_with_state() 3 >>> fun_with_state() 4 Bye, Stephan -- -- It can be done! ------

Re: socket and DynDNS

2008-10-22 Thread Stephan Schulz
or an external convenience feed. For the real application, we have a controlled environment, and loosing the occasional packet is much less critical than the overhead and delays of a safe protocol. But this is getting off-topic. Bye, Stephan -- -- It can be done! --

Re: The Importance of Terminology's Quality

2008-05-30 Thread Stephan Bour
Lew wrote: } John Thingstad wrote: } > Perl is solidly based in the UNIX world on awk, sed, bash and C. } > I don't like the style, but many do. } } Please exclude the Java newsgroups from this discussion. Did it ever occur to you that you don't speak for entire news groups? Ste

Re: Access to CAN-Bus

2008-06-09 Thread Stephan Diehl
elly check out an USB CAN adapter which might be easier to handle (but one never knows). Stephan -- http://mail.python.org/mailman/listinfo/python-list

money data type

2008-06-09 Thread Stephan Diehl
Hi lazyweb, I'm wondering, if there is a usable money data type for python available. A quick search in pypi and google didn't convey anything, even though the decimal data type seemed to be planned as a money data type originaly. Thanks for any pointers Stephan -- http://mail.python.o

Re: money data type

2008-06-09 Thread Stephan Diehl
Lie wrote: > On Jun 9, 10:22 pm, Stephan Diehl <[EMAIL PROTECTED]> wrote: >> Hi lazyweb, >> I'm wondering, if there is a usable money data type for python available. >> A quick search in pypi and google didn't convey anything, even though the >> decima

Re: PyPy questions

2008-07-01 Thread Stephan Diehl
ntation on codespeak.net as it will probably answer all of your questions. Alternativly, you might want to join the #pypy channel on freenode Stephan -- http://mail.python.org/mailman/listinfo/python-list

Re: Stackless Python for 2.4.3

2006-03-30 Thread Stephan Diehl
existing third party extension modules (like e.g. Tkinter and wxPython) > ? > It's definatelly compatible with wxPython. If memory serves right, there were some issues with Tkinter. It would be best to ask on stackless mailinglist for details (I'm not sure, if wxPython worked

ANN: Wing IDE 3.2.4 released

2010-02-01 Thread Stephan Deibel
Hi, Wingware has released version 3.2.4 of Wing IDE, our integrated development environment for the Python programming language. Wing IDE can be used on Windows, Linux, and OS X to develop Python code for web, GUI, and embedded scripting applications. Wing IDE provides auto-completion, call tip

Python 2.X vs. 3.X - level of acceptance?

2010-04-27 Thread Stephan Schulz
, preferably in Python. I'm so far only familiar with Python 2.X. Is Python 3 sucessful enough to make a switch worthwhile now? Or will students still face an infrastructure with mostly Python 2.X deployed in, say, 2 years time, when they graduate? Bye, Stephan -- -

ANN: Wing IDE 3.2.1 released

2009-09-14 Thread Stephan Deibel
Hi, Wingware has released version 3.2.1 of Wing IDE, our integrated development environment for the Python programming language. This is a bug fix release that includes the following changes: * Improved support for Snow Leopard (OS X 10.6) * Support for x86_64 Python 2.4+ on OS X * Support for

Re: unpacking elements in python - any tips u want to share ?

2017-08-06 Thread Stephan Houben
s: class Person: def __init__(self, first_name, last_name, address, city): self.first_name = first_name self.last_name = last_name self.address = address self.city = city Greetings, Stephan -- https://mail.python.org/mailman/listinfo/python-list

Re: Cross-language comparison: function map and similar

2017-08-20 Thread Stephan Houben
a facility in its standard library. std::transform (and many other functions operating on sequences, but you asked for a map() equivalent) takes an optional "execution_policy" parameter which indicates if the operation should be run sequentially (the default) or can be parallellized.

Re: Proposed new syntax

2017-08-22 Thread Stephan Houben
; No need for partial and gt. [x + 1 for x in takewhile((5).__gt__, (0,1,2,999,3,4))] Basically, Haskell's infix opererator sections can often be translated into Python by attribute access to the bound method. Stephan -- https://mail.python.org/mailman/listinfo/python-list

Re: Proposed new syntax

2017-08-22 Thread Stephan Houben
ou are correct. That's kind of a deception, really. I have often done things like: generate_id = itertools.count().__next__ but I suppose that isn't OK either, then. Stephan -- https://mail.python.org/mailman/listinfo/python-list

Re: Proposed new syntax

2017-08-23 Thread Stephan Houben
Op 2017-08-23, Ben Finney schreef : > Could you be convinced to instead do:: > > import functools > import itertools > > generate_id = functools.partial(next, itertools.count()) I certainly could be, but I was so far unaware of the desirability to do so.

Re: Case-insensitive string equality

2017-09-03 Thread Stephan Houben
e normalization, the more attractive case sensitivity looks ;-) Also slim hope to have a single caseInsensitiveCompare function which "Does The Right Thing"™. Stephan -- https://mail.python.org/mailman/listinfo/python-list

Re: tkinter keypress events are a mess for numpad keys

2017-09-03 Thread Stephan Houben
Mac OS, Linux, Windows)... I would suggest trying to reproduce the issue in a small Tcl/Tk script. If the issue can be reproduced in Tcl I would suggest filing a bug report at https://core.tcl.tk/tk/reportlist . Stephan -- https://mail.python.org/mailman/listinfo/python-list

Re: Cookie xxxxing problem

2013-10-26 Thread Stephan Vladimir Bugaj
I rarely ever post here. But I wanted to say that people responding to this Nikos troll makes reading this list a nuisance. You've never ever been successful in convincing him to behave, and it's been going on for quite a while now. I remain subscribed for occasional interesting new idioms an

Re: Why do Perl programmers make more money than Python programmers

2013-05-05 Thread Stephan Vladimir Bugaj
Most likely more legacy Perl code in mission critical systems S Sent from my pocket UNIVAC. On May 5, 2013, at 10:11 AM, Ignoramus16992 wrote: > According to CIO.com, Python programmers make only $83,000 per year, > while Perl programmers make $93,000 per year. > > http://www.cio.com/slides

Re: Why do Perl programmers make more money than Python programmers

2013-05-05 Thread Stephan Vladimir Bugaj
And seniority combined with annual cost of living raises, due to Perl being in use longer S Sent from my pocket UNIVAC. On May 5, 2013, at 10:11 AM, Ignoramus16992 wrote: > According to CIO.com, Python programmers make only $83,000 per year, > while Perl programmers make $93,000 per year. >

Re: New Python.org website ?

2006-02-05 Thread Chris Ditze-Stephan
Hi Fredrik Lundh schrieb: > > > > If you build it, they will come. > > > > http://pydotorg.dyndns.org:8000 Have access-problem. It's dnynds.org. Perhabs not everytime Online? bye Chris Ditze-Stephan > > ___ Chris Ditze-Stephan Zentric -- http

Donate to the Python Software Foundation!

2007-12-16 Thread Stephan Deibel (PSF)
/sponsorship/ Or become a sponsor of PyCon 2008, a great way to gain exposure for your business or find talented Python programmers to hire: http://us.pycon.org/2008/sponsors/ If you have any questions, please email me directly. Thanks, and Happy Holidays! -- Stephan Deibel Chairman of the

<    1   2