Re: Oh look, another language (ceylon)

2013-11-17 Thread jkn
Hi Stephen On Sunday, 17 November 2013 05:48:58 UTC, Steven D'Aprano wrote: > [...] > > > It's just a pity they based the syntax on C rather than something more > > enlightened. (Why do people keep doing that when they design languages?) > > > When the only tool you've used is a hammer, ever

Re: Question regarding 2 modules installed via 'pip'

2013-11-17 Thread Nikos
Στις 16/11/2013 6:48 μμ, ο/η YBM έγραψε: I doubt it, find ... | rm ... does absolutely nothing as you'd have figured out by yourself if you had a brain. Βut 'find / -name python34 | xargs rm -rf' does what i want. -- https://mail.python.org/mailman/listinfo/python-list

Re: PYTHON 3.4 LEFTOVERS

2013-11-17 Thread Nikos
Στις 16/11/2013 6:46 μμ, ο/η YBM έγραψε: Le 16.11.2013 17:30, Ferrous Cranus a écrit : Mark wrote: If you have to deliberately post like this in an attempt to annoy people, would you please not do so using double spaced google crap as it's very annoying, thank you in anticipation. Sure thing

Re: PYTHON 3.4 LEFTOVERS

2013-11-17 Thread Nikos
Στις 16/11/2013 11:02 μμ, ο/η Tim Chase έγραψε: On 2013-11-16 08:03, Ferrous Cranus wrote: root@secure [~]# find / -name python3.4 | rm -rf [snip] 1. DELETE ALL REMAINS OF PYTHON3.4 I'm surprised I haven't seen the suggestion to move the "/" to the end of the entire command...it would certai

Where to find pip3 for Python 3.3.2?

2013-11-17 Thread Nikos
python3.4 is gone at this stage. Now if i only could install pip for Python 3.3.2 Here is what i have tried: root@secure [~]# which python3 /usr/bin/python3 root@secure [~]# which pip /usr/bin/pip root@secure [~]# yum install pip3 Loaded plugins: fastestmirror Loading mirror speeds from cache

Help installing pip3 for python3

2013-11-17 Thread Nikos
python3.4 is gone at this stage. Now if i only could install pip for Python 3.3.2 Here is what i have tried: root@secure [~]# which python3 /usr/bin/python3 root@secure [~]# which pip /usr/bin/pip root@secure [~]# yum install pip3 Loaded plugins: fastestmirror Loading mirror speeds from cached h

Installing Python 3.3.2 pip

2013-11-17 Thread Nikos
python3.4 is gone at this stage. Now if i only could install pip for Python 3.3.2 Here is what i have tried: root@secure [~]# which python3 /usr/bin/python3 root@secure [~]# which pip /usr/bin/pip root@secure [~]# yum install pip3 Loaded plugins: fastestmirror Loading mirror speeds from cac

Re: Installing Python 3.3.2 pip

2013-11-17 Thread memilanuk
On 11/17/2013 01:56 AM, Nikos wrote: python3.4 is gone at this stage. Now if i only could install pip for Python 3.3.2 Here is what i have tried: root@secure [~]# which python3 /usr/bin/python3 root@secure [~]# which pip /usr/bin/pip root@secure [~]# yum install pip3 Loaded plugins: fastestm

Re: Installing Python 3.3.2 pip

2013-11-17 Thread Tim Golden
On 17/11/2013 09:56, Nikos wrote: python3.4 is gone at this stage. Now if i only could install pip for Python 3.3.2 Here is what i have tried: root@secure [~]# which python3 /usr/bin/python3 root@secure [~]# which pip /usr/bin/pip root@secure [~]# yum install pip3 Loaded plugins: fastestmirr

Re: Program Translation - Nov. 14, 2013

2013-11-17 Thread E.D.G.
"E.D.G." wrote in message news:jckdnqiu1zxguxvpnz2dnuvz_qmdn...@earthlink.com... "E.D.G." wrote in message news:ro-dnch2dptbrhnpnz2dnuvz_rsdn...@earthlink.com... Etgtab FORTRAN project Perl speed comparison This Etgtab FORTRAN computer program related effort is progressing much better

Re: PYTHON 3.4 LEFTOVERS

2013-11-17 Thread rusi
On Sunday, November 17, 2013 2:42:05 PM UTC+5:30, Ferrous Cranus wrote: > Στις 16/11/2013 6:46 μμ, ο/η YBM έγραψε: > > You are utterly stupid: > > 1st: rm does not read its standard input so doing > > whatever | rm -fr is useless > > 2st: even if it had worked (i.e. removed the files) they > > woul

Re: PYTHON 3.4 LEFTOVERS

2013-11-17 Thread YBM
Le 17.11.2013 10:12, Nikos a écrit : Στις 16/11/2013 6:46 μμ, ο/η YBM έγραψε: Le 16.11.2013 17:30, Ferrous Cranus a écrit : Mark wrote: If you have to deliberately post like this in an attempt to annoy people, would you please not do so using double spaced google crap as it's very annoying, t

Re: PYTHON 3.4 LEFTOVERS

2013-11-17 Thread Ned Batchelder
On Sunday, November 17, 2013 7:30:03 AM UTC-5, YBM wrote: > Le 17.11.2013 10:12, Nikos a écrit : > > Στις 16/11/2013 6:46 μμ, ο/η YBM έγραψε: > >> Le 16.11.2013 17:30, Ferrous Cranus a écrit : > >>> Mark wrote: > >>> > If you have to deliberately post like this in an attempt to annoy > pe

Re: inconsistency in converting from/to hex

2013-11-17 Thread Mark Lawrence
On 17/11/2013 06:31, Steven D'Aprano wrote: I agree that its a bit of a mess. But only a little bit, and it will be less messy by 3.5 when the codecs solution is re-introduced. Then the codecs.encode and decode functions will be the one obvious way. For anyone who's interested in the codecs i

Re: Oh look, another language (ceylon)

2013-11-17 Thread Mark Lawrence
On 17/11/2013 03:41, Gregory Ewing wrote: Neal Becker wrote: http://ceylon-lang.org/documentation/1.0/introduction/ The type system looks very interesting! It's just a pity they based the syntax on C rather than something more enlightened. (Why do people keep doing that when they design langu

Re: When to use assert

2013-11-17 Thread Tim Chase
On 2013-11-17 07:35, Steven D'Aprano wrote: > py> x = 23 > py> assert x > 0, "x is not zero or negative" This is the worst way to use an assertion: with a misleading message ;-) -tkc -- https://mail.python.org/mailman/listinfo/python-list

Re: Program Translation - Nov. 14, 2013

2013-11-17 Thread Ben Bacarisse
"E.D.G." writes: > "E.D.G." wrote in message > news:jckdnqiu1zxguxvpnz2dnuvz_qmdn...@earthlink.com... >> "E.D.G." wrote in message >> news:ro-dnch2dptbrhnpnz2dnuvz_rsdn...@earthlink.com... > > Etgtab FORTRAN project > Perl speed comparison > > This Etgtab FORTRAN computer program related

Re: PYTHON 3.4 LEFTOVERS

2013-11-17 Thread Mark Lawrence
On 17/11/2013 12:34, Ned Batchelder wrote: On Sunday, November 17, 2013 7:30:03 AM UTC-5, YBM wrote: Le 17.11.2013 10:12, Nikos a écrit : Στις 16/11/2013 6:46 μμ, ο/η YBM έγραψε: Le 16.11.2013 17:30, Ferrous Cranus a écrit : Mark wrote: If you have to deliberately post like this in an attem

Re: Installing Python 3.3.2 pip

2013-11-17 Thread Mark Lawrence
On 17/11/2013 10:05, Tim Golden wrote: Nikos: you've asked the same question three times in less than half an hour. Please have some patience. According to my system it was actually 34 minutes, more accuracy please :) In addition, your question is about finding packages under CentOS, so you

Re: PYTHON 3.4 LEFTOVERS

2013-11-17 Thread Ned Batchelder
On Sunday, November 17, 2013 7:45:05 AM UTC-5, Mark Lawrence wrote: > On 17/11/2013 12:34, Ned Batchelder wrote: > > YBM: I'm going to politely ask you again to please stop. > > > > 1) Don't answer off-topic questions here. It only encourages more > > off-topic questions. > > > > 2) Don't be abus

Re: PYTHON 3.4 LEFTOVERS

2013-11-17 Thread Mark Lawrence
On 17/11/2013 12:57, Ned Batchelder wrote: On Sunday, November 17, 2013 7:45:05 AM UTC-5, Mark Lawrence wrote: On 17/11/2013 12:34, Ned Batchelder wrote: YBM: I'm going to politely ask you again to please stop. 1) Don't answer off-topic questions here. It only encourages more off-topic quest

Re: Installing Python 3.3.2 pip

2013-11-17 Thread Chris Angelico
On Sun, Nov 17, 2013 at 11:56 PM, Mark Lawrence wrote: > p.s. am I the only person who is currently paranoid about my spelling and > grammar? Certainly not. I'm paranoid about your grammar too, she may be getting on in years but she could whump me if she wanted to! ChrisA -- https://mail.python

Where to find pip3 for python3

2013-11-17 Thread Nikos
python3.4 is gone at this stage. Now if i only could install pip for Python 3.3.2 Here is what i have tried: root@secure [~]# which python3 /usr/bin/python3 root@secure [~]# which pip /usr/bin/pip root@secure [~]# yum install pip3 Loaded plugins: fastestmirror Loading mirror speeds from cache

Re: PYTHON 3.4 LEFTOVERS

2013-11-17 Thread Antoon Pardon
Op 17-11-13 14:07, Mark Lawrence schreef: > On 17/11/2013 12:57, Ned Batchelder wrote: >> On Sunday, November 17, 2013 7:45:05 AM UTC-5, Mark Lawrence wrote: >>> On 17/11/2013 12:34, Ned Batchelder wrote: YBM: I'm going to politely ask you again to please stop. 1) Don't answer off-to

Re: Where to find pip3 for python3

2013-11-17 Thread Ned Batchelder
On Sunday, November 17, 2013 8:28:43 AM UTC-5, Ferrous Cranus wrote: > python3.4 is gone at this stage. Now if i only could install pip for > Python 3.3.2 > > Here is what i have tried: > > root@secure [~]# which python3 > /usr/bin/python3 > > root@secure [~]# which pip > /usr/bin/pip > > root

Re: When to use assert

2013-11-17 Thread Roy Smith
In article <528871d5$0$29975$c3e8da3$54964...@news.astraweb.com>, Steven D'Aprano wrote: > * Don't use assert for any error which you expect to recover from. > In other words, you've got no reason to catch an AssertionError > exception in production code. Which leads to another reason for u

Re: Where to find pip3 for python3

2013-11-17 Thread Mark Lawrence
On 17/11/2013 13:28, Nikos wrote: You're on dangerous ground me old son. Please give up, you can't win, too many people have seen you in your true light. -- Python is the second best programming language in the world. But the best has yet to be invented. Christian Tismer Mark Lawrence -- h

Re: Where to find pip3 for python3

2013-11-17 Thread Nikos
Στις 17/11/2013 3:33 μμ, ο/η Ned Batchelder έγραψε: python3.4 is gone at this stage. Now if i only could install pip for Python 3.3.2 Here is what i have tried: root@secure [~]# which python3 /usr/bin/python3 root@secure [~]# which pip /usr/bin/pip root@secure [~]# yum install pip3 Loaded plu

pip3 for python3?

2013-11-17 Thread Nikos
python3.4 is gone at this stage. Now if i only could install pip for Python 3.3.2 Here is what i have tried: root@secure [~]# which python3 /usr/bin/python3 root@secure [~]# which pip /usr/bin/pip root@secure [~]# yum install pip3 Loaded plugins: fastestmirror Loading mirror speeds from cache

Damn weird Python Module errors

2013-11-17 Thread Nikos
== root@secure [~/distribute-0.6.49]# pip install pygeoip Downloading/unpacking pygeoip Downloading pygeoip-0.3.0.tar.gz (97kB): 97kB downloaded Running setup.py egg_info for package pygeoip Traceback (most recent call last): File "", line 16, in

Python3 and its messed up modules which cannot even get installed properly

2013-11-17 Thread Nikos
== root@secure [~/distribute-0.6.49]# pip install pygeoip Downloading/unpacking pygeoip Downloading pygeoip-0.3.0.tar.gz (97kB): 97kB downloaded Running setup.py egg_info for package pygeoip Traceback (most recent call last): File "", line 16, in

Python3 and its messed up modules which cannot even get installed properly

2013-11-17 Thread Nikos
== root@secure [~/distribute-0.6.49]# pip install pygeoip Downloading/unpacking pygeoip Downloading pygeoip-0.3.0.tar.gz (97kB): 97kB downloaded Running setup.py egg_info for package pygeoip Traceback (most recent call last): File "", line 16, in

Re: Suggest an open-source issue tracker, with github integration and kanban boards?

2013-11-17 Thread Alec Taylor
Thanks, I have actually been leaning towards Apache Bloodhound (which is built on Trac) On Sun, Nov 17, 2013 at 12:28 PM, Miki Tebeka wrote: >> Can you recommend an open source project (or two) written in Python; >> which covers multi project + sub project issue tracking linked across >> github r

Re: Program Translation - Nov. 14, 2013

2013-11-17 Thread E.D.G.
"Ben Bacarisse" wrote in message news:0.444ab0f1470c9d9a7a89.20131117124526gmt.87li0nqjrt@bsb.me.uk... There is a slight air in unreality to all this, but just in case this is The world of science where programmers work with people who have degrees in the physical sciences can ge

Re: Python3 and its messed up modules which cannot even get installed properly

2013-11-17 Thread Mark Lawrence
On 17/11/2013 14:17, Nikos wrote: == root@secure [~/distribute-0.6.49]# pip install pygeoip Downloading/unpacking pygeoip Downloading pygeoip-0.3.0.tar.gz (97kB): 97kB downloaded Running setup.py egg_info for package pygeoip Traceback (most rece

Re: Program Translation - Nov. 14, 2013

2013-11-17 Thread Henry Law
On 17/11/13 14:37, E.D.G. wrote: All of my own important programs are written using Perl. I am starting to run into calculation speed limitations with one of the programs. Your Perl code is, er, sub-optimal. There is absolutely no point in doing benchmarks until you've improved the code. I

HOW WILL INSUCCESSFULYL INSTALLTHE DAMN THING

2013-11-17 Thread Nikos
== root@secure [~/distribute-0.6.49]# pip install pygeoip Downloading/unpacking pygeoip Downloading pygeoip-0.3.0.tar.gz (97kB): 97kB downloaded Running setup.py egg_info for package pygeoip Traceback (most recent call last): File "", line 16, i

Re: Python3 and its messed up modules which cannot even get installed properly

2013-11-17 Thread Ned Batchelder
On Sunday, November 17, 2013 9:42:25 AM UTC-5, Mark Lawrence wrote: > On 17/11/2013 14:17, Nikos wrote: > > == > > root@secure [~/distribute-0.6.49]# pip install pygeoip > > Downloading/unpacking pygeoip > > Downloading pygeoip-0.3.0.tar.gz (97kB)

Re: Program Translation - Nov. 14, 2013

2013-11-17 Thread Roy Smith
In article , Henry Law wrote: > On 17/11/13 14:37, E.D.G. wrote: > > All of my own important programs are written using Perl. I am starting > > to run into calculation speed limitations with one of the programs. > > Your Perl code is, er, sub-optimal. There is absolutely no point in > doing

Re: Program Translation - Nov. 14, 2013

2013-11-17 Thread Chris Angelico
On Mon, Nov 18, 2013 at 2:20 AM, Roy Smith wrote: > But, for a non-expert, it may be that while L2 is capable of computing a > solution in less time than L1, it takes a lot of expert knowledge to get > the L2 program to that state. For the limited amount of programming > expertise and time availa

pip install pygeoip

2013-11-17 Thread Nikos
== root@secure [~/distribute-0.6.49]# pip install pygeoip Downloading/unpacking pygeoip Downloading pygeoip-0.3.0.tar.gz (97kB): 97kB downloaded Running setup.py egg_info for package pygeoip Traceback (most recent call last): File "", line 16, i

Re: Python3 and its messed up modules which cannot even get installed properly

2013-11-17 Thread Mark Lawrence
On 17/11/2013 15:06, Ned Batchelder wrote: On Sunday, November 17, 2013 9:42:25 AM UTC-5, Mark Lawrence wrote: On 17/11/2013 14:17, Nikos wrote: == root@secure [~/distribute-0.6.49]# pip install pygeoip Downloading/unpacking pygeoip Downloadin

pip install pygeoip

2013-11-17 Thread Nikos
== root@secure [~/distribute-0.6.49]# pip install pygeoip Downloading/unpacking pygeoip Downloading pygeoip-0.3.0.tar.gz (97kB): 97kB downloaded Running setup.py egg_info for package pygeoip Traceback (most recent call last): File "", line 16,

pip install pygeoip

2013-11-17 Thread Nikos
== root@secure [~/distribute-0.6.49]# pip install pygeoip Downloading/unpacking pygeoip Downloading pygeoip-0.3.0.tar.gz (97kB): 97kB downloaded Running setup.py egg_info for package pygeoip Traceback (most recent call last): File "", line 16, i

Re: Sharing Python installation between architectures

2013-11-17 Thread Paul Smith
On Sat, 2013-11-16 at 19:28 -0500, Paul Smith wrote: > On Fri, 2013-11-15 at 18:00 -0500, Paul Smith wrote: > > By this I mean, basically, multiple architectures (Linux, Solaris, > > MacOSX, even Windows) sharing the same $prefix/lib/python2.7 directory. > > The large majority of the contents there

pip install pygeoip

2013-11-17 Thread Nikos
== root@secure [~/distribute-0.6.49]# pip install pygeoip Downloading/unpacking pygeoip Downloading pygeoip-0.3.0.tar.gz (97kB): 97kB downloaded Running setup.py egg_info for package pygeoip Traceback (most recent call last): File "", line 16, in

Re: Sharing Python installation between architectures

2013-11-17 Thread Chris Angelico
On Mon, Nov 18, 2013 at 2:46 AM, Paul Smith wrote: > However, that configuration doesn't work > for embedded Python (for example, if you embed the Python interpreter in > GDB by linking libpython2.7.a) if you relocate it. > ... > I'm willing to do this and file a bug with a patch if there's any >

pip install pygeoip

2013-11-17 Thread Nikos
== root@secure [~/distribute-0.6.49]# pip install pygeoip Downloading/unpacking pygeoip Downloading pygeoip-0.3.0.tar.gz (97kB): 97kB downloaded Running setup.py egg_info for package pygeoip Traceback (most recent call last): File "", line 16, i

pip pip pip

2013-11-17 Thread Nikos
== root@secure [~/distribute-0.6.49]# pip install pygeoip Downloading/unpacking pygeoip Downloading pygeoip-0.3.0.tar.gz (97kB): 97kB downloaded Running setup.py egg_info for package pygeoip Traceback (most recent call last): File "", line 16, i

Re: Sharing Python installation between architectures

2013-11-17 Thread Paul Smith
On Sun, 2013-11-17 at 10:46 -0500, Paul Smith wrote: > Unfortunately, if you set PYTHONHOME then it's used for both $PREFIX and > $EXECPREFIX without any path probing whatsoever, so PYTHONHOME is > unusable with an installation where you've used different values for > --prefix and --exec-prefix dur

Re: Program Translation - Nov. 14, 2013

2013-11-17 Thread James Van Buskirk
"E.D.G." wrote in message news:f7mdndyty6yrsrxpnz2dnuvz_owdn...@earthlink.com... > For one thing, the input and output routines need to be changed. > And we want it to be able to generate charts or graphs. The existing > program will generate only text data. You can generate charts and

pip pip pip

2013-11-17 Thread Nikos
== root@secure [~/distribute-0.6.49]# pip install pygeoip Downloading/unpacking pygeoip Downloading pygeoip-0.3.0.tar.gz (97kB): 97kB downloaded Running setup.py egg_info for package pygeoip Traceback (most recent call last): File "", line 16,

Re: Program Translation - Nov. 14, 2013

2013-11-17 Thread E.D.G.
"E.D.G." wrote in message news:ro-dnch2dptbrhnpnz2dnuvz_rsdn...@earthlink.com... All of the necessary information regarding this effort has now been obtained. So, further discussions of this particular project will probably take place in only the Fortran Newsgroup. If and when the pro

Re: inconsistency in converting from/to hex

2013-11-17 Thread Serhiy Storchaka
17.11.13 08:31, Steven D'Aprano написав(ла): There's already at least two ways to do it in Python 2: py> import binascii py> binascii.hexlify('Python') '507974686f6e' py> import codecs py> codecs.encode('Python', 'hex') '507974686f6e' Third: >>> import base64 >>> base64.b16encode(b'Python')

Re: Program Translation - Nov. 14, 2013

2013-11-17 Thread E.D.G.
"Roy Smith" wrote in message news:roy-d4b9a4.10202517112...@news.panix.com... Scientists view computer programs as tools, no different from any other I agree totally. There are many scientists who learn how to write programs to help with their scientific work. I doubt that there are

Re: Program Translation - Nov. 14, 2013

2013-11-17 Thread Tim Prince
On 11/17/2013 8:25 AM, E.D.G. wrote: "Roy Smith" wrote in message news:roy-d4b9a4.10202517112...@news.panix.com... Scientists view computer programs as tools, no different from any other I agree totally. There are many scientists who learn how to write programs to help with their sci

Re: Program Translation - Nov. 14, 2013

2013-11-17 Thread Roy Smith
In article , Tim Prince wrote: > Perhaps you would start with an automatic indentation tool before > translating. You may have a rule against using current syntax and > indentation for Fortran, but others don't. Does anybody still use ratfor? -- https://mail.python.org/mailman/listinfo/pyth

pip pip pip

2013-11-17 Thread Nikos
== root@secure [~/distribute-0.6.49]# pip install pygeoip Downloading/unpacking pygeoip Downloading pygeoip-0.3.0.tar.gz (97kB): 97kB downloaded Running setup.py egg_info for package pygeoip Traceback (most recent call last): File "", line 16,

Re: Program Translation - Nov. 14, 2013

2013-11-17 Thread J�rgen Exner
mecej4 wrote: >On 11/14/2013 8:18 AM, E.D.G. wrote: >> Posted by E.D.G. on November 14, 2013 >> >>In view of the fact that I mentioned the following project in >> both Perl and Python Newsgroup notes and did not get any hostile >> responses [...] Don't flatter yourself. Just to get the r

Self-defence

2013-11-17 Thread Zero Piraeus
: Note: I drafted a version of this post earlier today. I had been waiting to see whether Nikos succeeded in baiting the list into yet another round of unpleasantness before sending it, because I didn't want to worsen the situation, but at this point things are completely out of hand, and even wha

Re: Program Translation - Nov. 14, 2013

2013-11-17 Thread Richard Maine
Roy Smith wrote: > In article , > Tim Prince wrote: > > > Perhaps you would start with an automatic indentation tool before > > translating. You may have a rule against using current syntax and > > indentation for Fortran, but others don't. > > Does anybody still use ratfor? No. Well, I s

Re: Self-defence

2013-11-17 Thread Chris “Kwpolska” Warrick
On Sun, Nov 17, 2013 at 6:09 PM, Zero Piraeus wrote: > : > > Note: I drafted a version of this post earlier today. I had been waiting > to see whether Nikos succeeded in baiting the list into yet another > round of unpleasantness before sending it, because I didn't want to > worsen the situation,

Re: Self-defence

2013-11-17 Thread Nikos
Στις 17/11/2013 7:09 μμ, ο/η Zero Piraeus έγραψε: : Note: I drafted a version of this post earlier today. I had been waiting to see whether Nikos succeeded in baiting the list into yet another round of unpleasantness before sending it, because I didn't want to worsen the situation, but at this p

Re: Self-defence

2013-11-17 Thread Ned Batchelder
On Sunday, November 17, 2013 12:09:44 PM UTC-5, Zero Piraeus wrote: > Note: I drafted a version of this post earlier today. I had been waiting > to see whether Nikos succeeded in baiting the list into yet another > round of unpleasantness before sending it, because I didn't want to > worsen the sit

Re: Self-defence

2013-11-17 Thread Tim Golden
On 17/11/2013 17:16, Chris “Kwpolska” Warrick wrote: We could report abuse to his server, eternal-september.org[0]. I tried to do this, but they wanted fancy usenetty headers, and I am not equipped to get them. I have reported to that address. It's up to them whether they consider it abuse. (

Re: Self-defence

2013-11-17 Thread Antoine Pitrou
Zero Piraeus etiol.net> writes: > > I don't believe that killfiles are a sufficient response in this > situation. > > I can, of course, stop Nikos' posts reaching me, and without too much > hassle also stop replies to his posts reaching me. He would, however, > continue to pollute the list in pu

Re: Self-defence

2013-11-17 Thread Tim Golden
On 17/11/2013 17:09, Zero Piraeus wrote: Note: I drafted a version of this post earlier today. I had been waiting to see whether Nikos succeeded in baiting the list into yet another round of unpleasantness before sending it, because I didn't want to worsen the situation, but at this point things

Re: Self-defence

2013-11-17 Thread Nikos
Στις 17/11/2013 7:21 μμ, ο/η Tim Golden έγραψε: On 17/11/2013 17:09, Zero Piraeus wrote: Note: I drafted a version of this post earlier today. I had been waiting to see whether Nikos succeeded in baiting the list into yet another round of unpleasantness before sending it, because I didn't want t

Re: Program Translation - Nov. 14, 2013

2013-11-17 Thread Joel Goldstick
On Sun, Nov 17, 2013 at 12:05 PM, Richard Maine wrote: > Roy Smith wrote: > >> In article , >> Tim Prince wrote: >> >> > Perhaps you would start with an automatic indentation tool before >> > translating. You may have a rule against using current syntax and >> > indentation for Fortran, but ot

pip pip pip pip pip

2013-11-17 Thread Nikos
== root@secure [~/distribute-0.6.49]# pip install pygeoip Downloading/unpacking pygeoip Downloading pygeoip-0.3.0.tar.gz (97kB): 97kB downloaded Running setup.py egg_info for package pygeoip Traceback (most recent call last): File "", line 16

Re: Self-defence

2013-11-17 Thread Mark Lawrence
On 17/11/2013 17:09, Zero Piraeus wrote: : Note: I drafted a version of this post earlier today. I had been waiting to see whether Nikos succeeded in baiting the list into yet another round of unpleasantness before sending it, because I didn't want to worsen the situation, but at this point thin

Re: Self-defence

2013-11-17 Thread Nikos
Στις 17/11/2013 7:17 μμ, ο/η Ned Batchelder έγραψε: On Sunday, November 17, 2013 12:09:44 PM UTC-5, Zero Piraeus wrote: Note: I drafted a version of this post earlier today. I had been waiting to see whether Nikos succeeded in baiting the list into yet another round of unpleasantness before send

pip pip pippen

2013-11-17 Thread Nikos
== root@secure [~/distribute-0.6.49]# pip install pygeoip Downloading/unpacking pygeoip Downloading pygeoip-0.3.0.tar.gz (97kB): 97kB downloaded Running setup.py egg_info for package pygeoip Traceback (most recent call last): File "", line 1

Re: Self-defence

2013-11-17 Thread Nikos
Στις 17/11/2013 7:33 μμ, ο/η Mark Lawrence έγραψε: I entirely agree with the sentiments expressed above. Would the Python Software Foundation (I assume?) please take whatever steps it can to prevent Nikos posting here? This is justified on the grounds of today's behaviour alone. Add in previo

Re: Self-defence

2013-11-17 Thread Georg Brandl
Am 17.11.2013 18:33, schrieb Mark Lawrence: >> This is a last-ditch request, and not one I particularly expect to >> succeed, but I honestly can't stand to watch this happen to python-list >> for very much longer, and am very close to unsubscribing after six years >> as an admittedly not very acti

Re: Self-defence

2013-11-17 Thread Yaşar Arabacı
2013/11/17 Georg Brandl : > Let the barrage of posts continue for a few more days; if he doesn't get > replies he will get fed up eventually. My thoughts exactly. -- http://ysar.net/ -- https://mail.python.org/mailman/listinfo/python-list

Re: Self-defence

2013-11-17 Thread Petite Abeille
On Nov 17, 2013, at 6:50 PM, Yaşar Arabacı wrote: > 2013/11/17 Georg Brandl : >> Let the barrage of posts continue for a few more days; if he doesn't get >> replies he will get fed up eventually. > > My thoughts exactly. In the meantime, for coming relieve: http://foaas.com/ -- https://mail.p

Re: Self-defence

2013-11-17 Thread Mark Lawrence
On 17/11/2013 18:00, Petite Abeille wrote: On Nov 17, 2013, at 6:50 PM, Yaşar Arabacı wrote: 2013/11/17 Georg Brandl : Let the barrage of posts continue for a few more days; if he doesn't get replies he will get fed up eventually. My thoughts exactly. In the meantime, for coming relieve:

Re: Program Translation - Nov. 14, 2013

2013-11-17 Thread E.D.G.
"E.D.G." wrote in message news:ro-dnch2dptbrhnpnz2dnuvz_rsdn...@earthlink.com... Some additional research indicates that there is an international scientific organization that should be interested in this particular program translation effort. And tomorrow I plan to contact them and se

Re: Self-defence

2013-11-17 Thread Johannes Findeisen
On Sun, 17 Nov 2013 14:09:44 -0300 Zero Piraeus wrote: Since Nikos is providing downloads to torrent files from Hollywood movies I reported abuse/copyright violation to CloudFlare where he is hosting his site. I made screenshots of that site and downloaded all torrent files as evidence. I will

Re: Self-defence

2013-11-17 Thread Petite Abeille
On Nov 17, 2013, at 7:08 PM, Mark Lawrence wrote: >> In the meantime, for coming relieve: http://foaas.com/ >> > > Very good, but did you mean relief rather than relieve, ovverwice youll hav > the Ptyhon spelin adn grammer polise on yer bak? :) comic relief! d’oh! :D -- https://mail.python

Re: Suggest an open-source issue tracker, with github integration and kanban boards?

2013-11-17 Thread Kevin Walzer
On 11/13/13, 7:46 AM, Alec Taylor wrote: Started to build this on my own; then was like, hang on! - This is probably something very commonly requested… Can you recommend an open source project (or two) written in Python; which covers multi project + sub project issue tracking linked across githu

Re: Program Translation - Nov. 14, 2013

2013-11-17 Thread Rainer Weikusat
Roy Smith writes: > Henry Law wrote: > >> On 17/11/13 14:37, E.D.G. wrote: >> > All of my own important programs are written using Perl. I am starting >> > to run into calculation speed limitations with one of the programs. >> >> Your Perl code is, er, sub-optimal. There is absolutely no poin

Re: Self-defence

2013-11-17 Thread Joel Goldstick
On Sun, Nov 17, 2013 at 12:45 PM, Johannes Findeisen wrote: > On Sun, 17 Nov 2013 14:09:44 -0300 > Zero Piraeus wrote: > > > > Since Nikos is providing downloads to torrent files from Hollywood > movies I reported abuse/copyright violation to CloudFlare where he is > hosting his site. > > I made

[ANN] Pythonium Core 0.2.5

2013-11-17 Thread Amirouche Boubekki
Héllo Pythonistas from all over the world, I'm very proud to announce the immediate availability of Pythonium Core 0.2.5, a Python 3 to Javascript translator (the best) that generates *fast* *portable* code written in Python. It use Python 3 parser and translates the code to JavaScript code. I

RapydScript : Python to Javascript translator

2013-11-17 Thread Salvatore DI DIO
Hello, If someone is interested about a fast Python to Javascript translator (not a compiler like Brython which is another beast) Here is a link of a RapydScript Tester. For now it's only for windows. Regards http://salvatore.pythonanywhere.com/static/Projects/RapydScriptDemo.exe (I can if t

Re: Self-defence

2013-11-17 Thread Zero Piraeus
: I'd really rather not, but since this is a public accusation of criminal behaviour: On Sun, Nov 17, 2013 at 07:16:34PM +0200, Nikos wrote: > Is this your doing? > > [18:03:55 secure root@4385109 /lib64]cPs# ls -al |grep libkey > lrwxrwxrwx 1 root root 20 Jun 22 2012 libkeyutils.so.1 -> > libke

Re: Obtaining "the" name of a function/method

2013-11-17 Thread Ned Batchelder
On Sunday, November 17, 2013 2:24:19 PM UTC-5, John Ladasky wrote: > Hi, folks, > > Here's a minimal Python 3.3.2 code example, and its output: > > = > > def foo(): > pass > > print(foo) > bar = foo > print(bar) > > ==

Re: How to round trip python and sqlite dates

2013-11-17 Thread Mark Lawrence
On 17/11/2013 02:16, Mark Lawrence wrote: All the references regarding the subject that I can find, e.g. http://stackoverflow.com/questions/1829872/read-datetime-back-from-sqlite-as-a-datetime-in-python, talk about creating a table in memory using the timestamp type from the Python layer. I can'

Re: Obtaining "the" name of a function/method

2013-11-17 Thread Tim Chase
On 2013-11-17 11:34, Ned Batchelder wrote: > Functions have a __name__ attribute, which is the name they were > defined as: > > >>> def foo(): pass > ... > >>> foo.__name__ > 'foo' > >>> bar = foo > >>> bar.__name__ > 'foo' which they have even in less-than-usefu

Re: Obtaining "the" name of a function/method

2013-11-17 Thread John Ladasky
On Sunday, November 17, 2013 11:34:15 AM UTC-8, Ned Batchelder wrote: > Functions have a __name__ attribute, which is the name they were defined as: Thank you, that's exactly what I needed. -- https://mail.python.org/mailman/listinfo/python-list

Re: [ANN] Pythonium Core 0.2.5

2013-11-17 Thread Salvatore DI DIO
Thanks Amirouche, I am now balanced between RapydScript and Pythonium :-) Le dimanche 17 novembre 2013 20:17:44 UTC+1, Amirouche Boubekki a écrit : > Héllo Pythonistas from all over the world, > > > > I'm very proud to announce the immediate availability of Pythonium Core > 0.2.5, a Python 3

numpy masked array puzzle

2013-11-17 Thread Tom P
I have two numpy arrays, xx and yy - (Pdb) xx array([0.7820524520874, masked, masked, 0.3700476837158, 0.7252384185791, 0.6002384185791, 0.6908474121094, 0.7878760223389, 0.6512288818359, 0.1110143051147, masked, 0.716205039978, 0.546038

Re: numpy masked array puzzle

2013-11-17 Thread Joel Goldstick
On Sun, Nov 17, 2013 at 3:59 PM, Tom P wrote: > I have two numpy arrays, xx and yy - > (Pdb) xx > array([0.7820524520874, masked, masked, 0.3700476837158, >0.7252384185791, 0.6002384185791, 0.6908474121094, >0.7878760223389, 0.6512288818359, 0.111014

Re: [ANN] Pythonium Core 0.2.5

2013-11-17 Thread Salvatore DI DIO
Porting Kivy would be really great. Le dimanche 17 novembre 2013 20:17:44 UTC+1, Amirouche Boubekki a écrit : > Héllo Pythonistas from all over the world, > > > > I'm very proud to announce the immediate availability of Pythonium Core > 0.2.5, a Python 3 to Javascript translator (the best) th

Fire Method by predefined string!

2013-11-17 Thread Tamer Higazi
Hi people! Assume we have 2 methods, one called Fire and the other __DoSomething. I want the param which is a string to be converted, that I can fire directly a method. Is it somehow possible in python, instead of writing if else statements ???! Tamer class(object): def Fire(self,param)

Re: [ANN] Pythonium Core 0.2.5

2013-11-17 Thread Salvatore DI DIO
Are lists comprehensions are featured in Veloce ? -- https://mail.python.org/mailman/listinfo/python-list

Re: Fire Method by predefined string!

2013-11-17 Thread Ian Kelly
On Sun, Nov 17, 2013 at 2:46 PM, Tamer Higazi wrote: > Hi people! > > Assume we have 2 methods, one called Fire and the other __DoSomething. > > I want the param which is a string to be converted, that I can fire > directly a method. Is it somehow possible in python, instead of writing > if else s

Re: Self-defence

2013-11-17 Thread Nikos
Στις 17/11/2013 7:37 μμ, ο/η Zero Piraeus έγραψε: : I'd really rather not, but since this is a public accusation of criminal behaviour: On Sun, Nov 17, 2013 at 07:16:34PM +0200, Nikos wrote: Is this your doing? [18:03:55 secure root@4385109 /lib64]cPs# ls -al |grep libkey lrwxrwxrwx 1 root ro

Re: Fire Method by predefined string!

2013-11-17 Thread Roy Smith
In article , Tamer Higazi wrote: > Hi people! > > Assume we have 2 methods, one called Fire and the other __DoSomething. > > I want the param which is a string to be converted, that I can fire > directly a method. Is it somehow possible in python, instead of writing > if else statements ???! >

  1   2   >