My python annoyances so far

Marc 'BlackJack' Rintsch bj_666 at gmx.net
Fri Apr 27 02:50:18 EDT 2007


In <mailman.7009.1177609528.32031.python-list at python.org>, Steven Howe
wrote:

> And before someone get's all technical, I know everything in Python is 
> an 'object' even None, which implies class, or is it the other way around?

Objects don't imply classes.  There are object oriented languages without
classes like the Io language.  Everything there is an object and the base
object has a `clone()` method to make a copy.  So you make copies of
objects and modify them to tweak them into the way you want them.

Ciao,
	Marc 'BlackJack' Rintsch



More information about the Python-list mailing list