From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-0.9 required=5.0 tests=BAYES_00,FORGED_GMAIL_RCVD, FREEMAIL_FROM autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: 103376,41c5dc8789baf2f3,start X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Received: by 10.180.98.234 with SMTP id el10mr1990731wib.3.1347914548128; Mon, 17 Sep 2012 13:42:28 -0700 (PDT) Received: by 10.52.33.34 with SMTP id o2mr1051024vdi.12.1347914547757; Mon, 17 Sep 2012 13:42:27 -0700 (PDT) Path: ed8ni114471314wib.0!nntp.google.com!v8no6232qap.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Mon, 17 Sep 2012 13:42:27 -0700 (PDT) Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=77.98.243.142; posting-account=28F2IwkAAACL1Z5nRC-dE7zuvWdbWC7P NNTP-Posting-Host: 77.98.243.142 User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: Subject: Understanding Visibility From: tonyg Injection-Date: Mon, 17 Sep 2012 20:42:27 +0000 Content-Type: text/plain; charset=ISO-8859-1 Date: 2012-09-17T13:42:27-07:00 List-Id: I needed to log some stuff from several tasks in one program. So I wrote a little logging package. I used a package containing several text_io.file_types followed by a protected object to make sure the file operations were not interfered with. However when things were passed through to inside the protected object I found that the file was not taking the information being passed to it. Can anyone explain this to me, as I think the file should be visible.