(self)
| 485 | dir_hist = List() |
| 486 | @default('dir_hist') |
| 487 | def _dir_hist_default(self): |
| 488 | try: |
| 489 | return [os.getcwd()] |
| 490 | except OSError: |
| 491 | return [] |
| 492 | |
| 493 | # A dict of output history, keyed with ints from the shell's |
| 494 | # execution count. |
nothing calls this directly
no outgoing calls
no test coverage detected