--> -->

OSError

[Errno 2] No such file or directory: '/tmp/tmp6wPYD4'

If you want to report a bug, please save this page and attach it to your bug report.

Traceback

A problem occurred in a Python script. Here is the sequence of function calls leading up to the error, in the order they occurred.

  1. /var/lib/python-support/python2.4/MoinMoin/request.py in run (self=<MoinMoin.request.RequestCGI object>)

    1. 1152 # Visit pagename
    2. 1153 self.page = Page(self, pagename)
    3. 1154 self.page.send_page(self, count_hit=1)
    4. 1155
    5. 1156 # generate page footer (actions that do not want this footer
    • self = <MoinMoin.request.RequestCGI object>
    • self.page = <MoinMoin.Page.Page instance>
    • self.page.send_page = <bound method Page.send_page of <MoinMoin.Page.Page instance>>
    • count_hit undefined
  2. /var/lib/python-support/python2.4/MoinMoin/Page.py in send_page (self=<MoinMoin.Page.Page instance>, request=<MoinMoin.request.RequestCGI object>, msg='', **keywords={'count_hit': 1})

    1. 1234 format_args=pi_formatargs,
    2. 1235 do_cache=do_cache,
    3. 1236 start_line=pi_lines)
    4. 1237
    5. 1238 # check for pending footnotes
    • start_line undefined
    • pi_lines = 0
  3. /var/lib/python-support/python2.4/MoinMoin/Page.py in send_page_content (self=<MoinMoin.Page.Page instance>, request=<MoinMoin.request.RequestCGI object>, Parser=<class CodeWiki.plugin.parser.inline_latex.Parser>, body=u"I've thought for quite a while now that darcs' p...as been too evil a way of proposing the concept.\n", format_args='', do_cache=1, **kw={'start_line': 0})

    1. 1320 except 'CacheNeedsUpdate':
    2. 1321 try:
    3. 1322 code = self.makeCache(request, parser)
    4. 1323 self.execute(request, parser, code)
    5. 1324 except 'CacheNeedsUpdate':
    • code undefined
    • self = <MoinMoin.Page.Page instance>
    • self.makeCache = <bound method Page.makeCache of <MoinMoin.Page.Page instance>>
    • request = <MoinMoin.request.RequestCGI object>
    • parser = <CodeWiki.plugin.parser.inline_latex.Parser instance>
  4. /var/lib/python-support/python2.4/MoinMoin/Page.py in makeCache (self=<MoinMoin.Page.Page instance>, request=<MoinMoin.request.RequestCGI object>, parser=<CodeWiki.plugin.parser.inline_latex.Parser instance>)

    1. 1371 saved_current_lang = request.current_lang
    2. 1372 try:
    3. 1373 text = request.redirectedOutput(parser.format, formatter)
    4. 1374 finally:
    5. 1375 request.current_lang = saved_current_lang
    • text undefined
    • request = <MoinMoin.request.RequestCGI object>
    • request.redirectedOutput = <bound method RequestCGI.redirectedOutput of <MoinMoin.request.RequestCGI object>>
    • parser = <CodeWiki.plugin.parser.inline_latex.Parser instance>
    • parser.format = <bound method Parser.format of <CodeWiki.plugin.parser.inline_latex.Parser instance>>
    • formatter = <MoinMoin.formatter.text_python.Formatter instance>
  5. /var/lib/python-support/python2.4/MoinMoin/request.py in redirectedOutput (self=<MoinMoin.request.RequestCGI object>, function=<bound method Parser.format of <CodeWiki.plugin.parser.inline_latex.Parser instance>>, *args=(<MoinMoin.formatter.text_python.Formatter instance>,), **kw={})

    1. 716 self.redirect(buffer)
    2. 717 try:
    3. 718 function(*args, **kw)
    4. 719 finally:
    5. 720 self.redirect()
    • function = <bound method Parser.format of <CodeWiki.plugin.parser.inline_latex.Parser instance>>
    • args = (<MoinMoin.formatter.text_python.Formatter instance>,)
    • kw = {}
  6. /var/lib/python-support/python2.4/MoinMoin/parser/wiki.py in format (self=<CodeWiki.plugin.parser.inline_latex.Parser instance>, formatter=<MoinMoin.formatter.text_python.Formatter instance>)

    1. 1098
    2. 1099 # Scan line, format and write
    3. 1100 formatted_line = self.scan(scan_re, line)
    4. 1101 self.request.write(formatted_line)
    5. 1102
    • formatted_line = u'<p class="line874">In reality, any repository ca...hough this need not be the case, for the theory) '
    • self = <CodeWiki.plugin.parser.inline_latex.Parser instance>
    • self.scan = <bound method Parser.scan of <CodeWiki.plugin.parser.inline_latex.Parser instance>>
    • scan_re = <_sre.SRE_Pattern object>
    • line = ruWe write $R' = R + P$ to indicate the repository...tive, so $R + P_1 + P_2 \doteq (R + P_1) + P_2$. u
  7. /var/lib/python-support/python2.4/MoinMoin/parser/wiki.py in scan (self=<CodeWiki.plugin.parser.inline_latex.Parser instance>, scan_re=<_sre.SRE_Pattern object>, line=ruWe write $R' = R + P$ to indicate the repository...tive, so $R + P_1 + P_2 \doteq (R + P_1) + P_2$. u)

    1. 874 self.in_table or self.in_list):
    2. 875 result.append(self.formatter.paragraph(1, css_class="line867"))
    3. 876 result.append(self.replace(match))
    4. 877 lastpos = match.end()
    5. 878
    • result = ['<p class="line862">', u'We write ']
    • result.append = <built-in method append of list object>
    • self = <CodeWiki.plugin.parser.inline_latex.Parser instance>
    • self.replace = <bound method Parser.replace of <CodeWiki.plugin.parser.inline_latex.Parser instance>>
    • match = <_sre.SRE_Match object>
  8. /var/lib/python-support/python2.4/MoinMoin/parser/wiki.py in replace (self=<CodeWiki.plugin.parser.inline_latex.Parser instance>, match=<_sre.SRE_Match object>)

    1. 903 # Get replace method and replece hit
    2. 904 replace = getattr(self, '_' + type + '_repl')
    3. 905 result.append(replace(hit))
    4. 906 return ''.join(result)
    5. 907 else:
    • result = []
    • result.append = <built-in method append of list object>
    • replace = <bound method Parser._latex_formula_repl of <CodeWiki.plugin.parser.inline_latex.Parser instance>>
    • hit = u"$R' = R + P$"
  9. /srv/code.erisian.com.au/wiki/data/plugin/parser/inline_latex.py in _latex_formula_repl (self=<CodeWiki.plugin.parser.inline_latex.Parser instance>, text=u"$R' = R + P$", **kw={})

    1. 34 if self._latex_plugin is None:
    2. 35 return self.formatter.text("<<please install the latex parser>>")
    3. 36 return self._latex_plugin('', self.request).get(self.formatter, text, '')
    4. 37
    5. 38 def _latex_formula_para_repl(self, text, **kw):
    • self = <CodeWiki.plugin.parser.inline_latex.Parser instance>
    • self._latex_plugin = <class CodeWiki.plugin.parser.latex.Parser>
    • self.request = <MoinMoin.request.RequestCGI object>
    • ).get undefined
    • self.formatter = <MoinMoin.formatter.text_python.Formatter instance>
    • text = u"$R' = R + P$"
  10. /srv/code.erisian.com.au/wiki/data/plugin/parser/latex.py in get (self=<CodeWiki.plugin.parser.latex.Parser instance>, formatter=<MoinMoin.formatter.text_python.Formatter instance>, inputtex=u"$R' = R + P$", prologue='', para=False)

    1. 192 for name in dirs:
    2. 193 os.rmdir(os.path.join(root,name))
    3. 194 os.rmdir(tmpdir)
    4. 195
    5. 196 result = ""
    • global os = <module 'os' from '/usr/lib/python2.4/os.pyc'>
    • os.rmdir = <built-in function rmdir>
    • tmpdir = '/tmp/tmp6wPYD4'

OSError

[Errno 2] No such file or directory: '/tmp/tmp6wPYD4'

  • args = (2, 'No such file or directory')
  • errno = 2
  • filename = '/tmp/tmp6wPYD4'
  • strerror = 'No such file or directory'

System Details

  • Date: Wed, 20 Aug 2008 14:51:21 +0000
  • Platform: Linux azure.erisian.com.au 2.4.20-021stab022.11.777-enterprise #1 SMP Fri Jan 14 11:07:01 MSK 2005 i686
  • Python: Python 2.4.4 (/usr/bin/python)
  • MoinMoin: Release 1.5.3 (release)