micropython

Change of README.txt

42:8a50d440af2f
README.txt
     1.1 --- a/README.txt	Mon Feb 11 01:58:12 2008 +0100
     1.2 +++ b/README.txt	Fri Feb 15 23:50:15 2008 +0100
     1.3 @@ -9,6 +9,21 @@
     1.4  Instance attributes are defined only by assignments to attributes of self
     1.5  within __init__ methods.
     1.6  
     1.7 +Potential Restrictions
     1.8 +----------------------
     1.9 +
    1.10 +Names of classes and functions could be restricted to only refer to those
    1.11 +objects within the same namespace. If redefinition were to occur, or if
    1.12 +multiple possibilities were present, these restrictions could be moderated as
    1.13 +follows:
    1.14 +
    1.15 +  * Classes assigned to the same name could provide the union of their
    1.16 +    attributes. This would, however, cause a potential collision of attribute
    1.17 +    definitions such as methods.
    1.18 +
    1.19 +  * Functions, if they share compatible signatures, could share parameter list
    1.20 +    definitions.
    1.21 +
    1.22  Data Structures
    1.23  ===============
    1.24