File: tclass.py

package info (click to toggle)
ipython 9.8.0-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 8,624 kB
  • sloc: python: 45,268; sh: 317; makefile: 168
file content (35 lines) | stat: -rw-r--r-- 920 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
"""Simple script to be run *twice*, to check reference counting bugs.

See test_run for details."""

import sys


# We want to ensure that while objects remain available for immediate access,
# objects from *previous* runs of the same script get collected, to avoid
# accumulating massive amounts of old references.
class C(object):
    def __init__(self, name):
        self.name = name
        self.p = print
        self.flush_stdout = sys.stdout.flush

    def __del__(self):
        self.p("tclass.py: deleting object:", self.name)
        self.flush_stdout()


try:
    name = sys.argv[1]
except IndexError:
    pass
else:
    if name.startswith("C"):
        c = C(name)

# print("ARGV:", sys.argv, file=sys.stderr)  # dbg

# This next print statement is NOT debugging, we're making the check on a
# completely separate process so we verify by capturing stdout:
print("ARGV 1-:", sys.argv[1:])
sys.stdout.flush()