Re: old python

2014-06-23 Thread Steven D'Aprano
On Sun, 22 Jun 2014 13:18:09 -0700, arbautjc wrote:

 If anybody is interested...
 
 I think it's the same as the version unearthed recently [1], but here is
 a rather old version of Python on ftp:
 
 ftp://ftp.uni-duisburg.de/local/systems/unix/old_stuff/
 
 
 [1] http://legacy.python.org/download/releases/early/

It claims to be the same version, 0.9.1.

Among other differences, Python 0.9 doesn't accept  as string 
delimiters!

steve@runes:~/personal/python/python-0.9.1$ ./python0.9.1
 x = hello
Parsing error: file stdin, line 1:
x = hello
 ^
Unhandled exception: run-time error: syntax error
 x = 'hello'
 

The exception system was primitive:

 1/0
Unhandled exception: run-time error: integer division by zero
Stack backtrace (innermost last):
  File stdin, line 1



There's no lambda built-in, but there is a version in the standard 
library!

def lambda(args, expr):
   if '\n' in args or '\n' in expr:
   raise RuntimeError, 'lambda: no cheating!'
   stmt = 'def func(' + args + '): return ' + expr + '\n'
   print 'lambda:', stmt,
   exec(stmt)
   return func


-- 
Steven
-- 
https://mail.python.org/mailman/listinfo/python-list


Re: old python

2014-06-22 Thread Terry Reedy

On 6/22/2014 4:18 PM, arbau...@gmail.com wrote:

If anybody is interested...

I think it's the same as the version unearthed recently [1], but here is a 
rather old version of Python on ftp:

ftp://ftp.uni-duisburg.de/local/systems/unix/old_stuff/


Does not accept anonymous logins (or my email), it says to me.


[1] http://legacy.python.org/download/releases/early/


--
Terry Jan Reedy

--
https://mail.python.org/mailman/listinfo/python-list


Re: Old Python Logo

2006-03-13 Thread Josef Meile
Can someone post a link or email me an image of the old Python logo?
I'd like to save a copy of it, I rather liked it - very retro.
 
 
 the dot matrix logo ?
 
 you can get a copy from this page:
 

That website is down. You could try the archive as well:
http://web.archive.org/web/20050401015445/http://www.python.org/

Regards
Josef

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: Old Python Logo

2006-03-13 Thread Tim Parkin
Josef Meile wrote:
Can someone post a link or email me an image of the old Python logo?
I'd like to save a copy of it, I rather liked it - very retro.


the dot matrix logo ?

you can get a copy from this page:


 
 That website is down. You could try the archive as well:
 http://web.archive.org/web/20050401015445/http://www.python.org/

or you can look at http://archive-www.python.org which will be up for
the next month.

Tim Parkin
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: Old Python Logo

2006-03-13 Thread Fredrik Lundh
Josef Meile wrote:

  you can get a copy from this page:
 
 That website is down. You could try the archive as well:
 http://web.archive.org/web/20050401015445/http://www.python.org/

it's down for maintenance, but it wasn't down when I posted
that link...

you don't have to use the archive, btw.  the file is still there
on python.org:

http://www.python.org/pics/pythonHi.gif

/F



-- 
http://mail.python.org/mailman/listinfo/python-list


Re: Old Python Logo

2006-03-11 Thread Fredrik Lundh
Spinchange wrote:

 Can someone post a link or email me an image of the old Python logo?
 I'd like to save a copy of it, I rather liked it - very retro.

the dot matrix logo ?

you can get a copy from this page:

http://pydotorg.dyndns.org:8000/PythonOrg.html

/F



-- 
http://mail.python.org/mailman/listinfo/python-list