Advertisement
AtomicOs

Python

Apr 21st, 2021
380
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 3.54 KB | None | 0 0
  1. <type 'exceptions.ValueError'>  Python 2.6.9: /oj/bin/python
  2. Wed Apr 21 09:53:18 2021
  3. A problem occurred in a Python script. Here is the sequence of function calls leading up to the error, in the order they occurred.
  4.  
  5.  /oj/lib/python2.6/site-packages/flup-1.0.3.dev_20110405-py2.6.egg/flup/server/fcgi_base.py in run(self=<flup.server.fcgi_base.Request object>)
  6.   572            
  7.   573         try:
  8.   574             protocolStatus, appStatus = self.server.handler(self)
  9.   575         except:
  10.   576             traceback.print_exc(file=self.stderr)
  11. protocolStatus undefined, appStatus undefined, self = <flup.server.fcgi_base.Request object>, self.server = <flup.server.fcgi.WSGIServer object>, self.server.handler = <bound method WSGIServer.handler of <flup.server.fcgi.WSGIServer object>>
  12.  /oj/lib/python2.6/site-packages/flup-1.0.3.dev_20110405-py2.6.egg/flup/server/fcgi_base.py in handler(self=<flup.server.fcgi.WSGIServer object>, req=<flup.server.fcgi_base.Request object>)
  13.  1159                 result = self.application(environ, start_response)
  14.  1160                 try:
  15.  1161                     for data in result:
  16.  1162                         if data:
  17.  1163                             write(data)
  18. data undefined, result = <generator object increasingchunks>
  19.  /oj/lib/python2.6/site-packages/mercurial/util.py in increasingchunks(source=<generator object _flatten>, min=1024, max=65536)
  20.   360     buf = []
  21.   361     blen = 0
  22.   362     for chunk in source:
  23.   363         buf.append(chunk)
  24.   364         blen += len(chunk)
  25. chunk = ' bookmark history</summary>\n <author><name>Mercurial SCM</name></author>\n ', source = <generator object _flatten>
  26.  /oj/lib/python2.6/site-packages/mercurial/templater.py in _flatten(thing=<generator object runtemplate>)
  27.   394                     yield str(i)
  28.   395             elif i is not None:
  29.   396                 for j in _flatten(i):
  30.   397                     yield j
  31.   398
  32. j = '"?>\n<feed xmlns="http://www.w3.org/2005/Atom">', global _flatten = <function _flatten>, i = <generator object runmap>
  33.  /oj/lib/python2.6/site-packages/mercurial/templater.py in _flatten(thing=<generator object runmap>)
  34.   387             yield str(thing)
  35.   388     else:
  36.   389         for i in thing:
  37.   390             if isinstance(i, str):
  38.   391                 yield i
  39. i undefined, thing = <generator object runmap>
  40.  /oj/lib/python2.6/site-packages/mercurial/templater.py in runmap(context=<mercurial.templater.engine object>, mapping={'entries': <function <lambda>>, 'header': ['<?xml version="1.0" encoding="', 'ascii', '"?>\n<feed xmlns="http://www.w3.org/2005/Atom">'], 'latestentry': <function <lambda>>, 'node': 'd40fd22345537dc5e2bee14e5f542cc63647745c'}, data='latestentry')
  41.   188     lm = mapping.copy()
  42.   189
  43.   190     for i in d:
  44.   191         if isinstance(i, dict):
  45.   192             lm.update(i)
  46. i undefined, d = <generator object entries>
  47.  /oj/lib/python/hgweb/webcommands.py in entries(latestonly=True, **map={'entries': <function <lambda>>, 'header': ['<?xml version="1.0" encoding="', 'ascii', '"?>\n<feed xmlns="http://www.w3.org/2005/Atom">'], 'latestentry': <function <lambda>>, 'node': 'd40fd22345537dc5e2bee14e5f542cc63647745c'})
  48.   520     def entries(latestonly, **map):
  49.   521         if latestonly:
  50.   522             t = [min(i)]
  51.   523         else:
  52.   524             t = sorted(i)
  53. t undefined, builtin min = <built-in function min>, i = []
  54. <type 'exceptions.ValueError'>: min() arg is an empty sequence
  55.       args = ('min() arg is an empty sequence',)
  56.       message = 'min() arg is an empty sequence'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement