Anybody know what's up with Gmane?231 (10/4/2012 7:03:03 PM) Good evening all,
I read some 20 Python mailing lists through Gmane using Thunderbird on Wind=
ows but nothing new has arrived for almost 24 hours, hence why I've relucta=
ntly resorted to Google groups to... breamoreboy1(700)
PyDev 2.7.0 Released020 (10/5/2012 12:02:55 AM) Hi All,
PyDev 2.7.0 has been released
Details on PyDev: http://pydev.org
Details on its development: http://pydev.blogspot.com
Release Highlights:
-------------------------------
* **Code formatte... fabiofz(86)
Can somebody give me an advice about what to learn?1820 (9/30/2012 12:58:40 PM) Hi!
I'm really new to Usenet/Newsgroups, but... I'd like to learn some new programming language, because I learnt a bit of Perl though its OOP is ugly. So, after searching a bit, I found Python and Ruby, and b... tomeuari(2)
Emulating C++ namespaces with ChainMap and metaclass trickery020 (10/3/2012 6:26:50 PM) C++ namespaces are useful for encapsulating related objects within a
single file, subdividing the global namespace without using classes.
Python has modules, but they come in separate files.
Using Python... comp.lang.python(2604)
Help me abstract this (and stop me from using eval)420 (10/3/2012 4:23:03 PM) Hi!
I've got import scripts for a bunch of csv files into an sqlite database. I=
have one csv file per language. I don't write directly to the sqlite db; t=
his is a django app and I'm creating items in m... bringa1(8)
Combinations of lists420 (10/3/2012 2:26:43 PM) Hi,
I am looking for a clever way to compute all combinations of two lists.
Look at this example:
h = ['A','A','B','B']
m = ['a','b']
the resulting combinations should be of the same length as h and... boxeakasteen(3)
Slicing iterables in sub-generators without loosing elements1921 (9/29/2012 4:14:38 PM) Hi,
say we have the following:
>>> data = [('foo', 1), ('foo', 2), ('bar', 3), ('bar', 2)]
is there a way to code a function iter_in_blocks such that
>>> result = [ list(block) for block in iter_in_... thbach(31)