~ubuntu-branches/debian/sid/pyro/sid

« back to all changes in this revision

Viewing changes to examples/attributes/Readme.txt

  • Committer: Bazaar Package Importer
  • Author(s): Carl Chenet, Carl Chenet, Jakub Wilk
  • Date: 2010-09-14 01:04:28 UTC
  • Revision ID: james.westby@ubuntu.com-20100914010428-02r7p1rzr7jvw94z
Tags: 1:3.9.1-2
[Carl Chenet]
* revert to 3.9.1-1 package because of the development status 
  of the 4.1 package is unsuitable for stable use
  DPMT svn #8557 revision (Closes: #589172) 
* added debian/source
* added debian/source/format
* package is now 3.0 (quilt) source format
* debian/control
  - Bump Standards-Version to 3.9.1

[Jakub Wilk]
* Add ‘XS-Python-Version: >= 2.5’ to prevent bytecompilation with python2.4
  (closes: #589053).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
This test shows the possibility of direct attribute access.
 
2
 
 
3
Notice that the client no longer uses getter and setter methods,
 
4
it directly accesses the object's attributes by using normal
 
5
Python syntax.
 
6
 
 
7
 
 
8
Note that the nested attributes from the person object can only
 
9
work because the Person.py module (that contains the Person class)
 
10
is available to the client !!!  If the Person.py wasn't in this directory
 
11
(and hence, not available to the client) the client will crash
 
12
with an error such as "No module named Person")
 
13