File: README

package info (click to toggle)
linuxcnc 1%3A2.9.7-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 285,604 kB
  • sloc: python: 202,568; ansic: 109,036; cpp: 99,239; tcl: 16,054; xml: 10,631; sh: 10,303; makefile: 1,255; javascript: 138; sql: 72; asm: 15
file content (8 lines) | stat: -rw-r--r-- 343 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
Exercise the behaviour of 'self' in Interpreter Embedded Python.

So far it wasn't possible to tack an attribute to self, and have it
retained across several calls (basically using self.attr as extension
of _setup on the Python side).

This test shows that attributes on 'self' were not retained across calls.
A following patch will fix this.