(self)
| 907 | output().psdict(dump) |
| 908 | |
| 909 | def help_dump(self): |
| 910 | print("Dump dictionary: dump <dict>") |
| 911 | # print("If <dict> is empty, the whole dictionary stack is dumped.") |
| 912 | print("Standard PostScript dictionaries:") |
| 913 | if len(self.options_dump) > 0: |
| 914 | last = self.options_dump[-1] |
| 915 | for dict in self.options_dump: |
| 916 | print((('└─ ' if dict == last else '├─ ') + dict)) |
| 917 | |
| 918 | # undocumented ... what about proprietary dictionary names? |
| 919 | options_dump = ('systemdict', 'statusdict', 'userdict', 'globaldict', |
nothing calls this directly
no outgoing calls
no test coverage detected