(*args)
| 151 | |
| 152 | |
| 153 | def _stderr(*args): |
| 154 | try: |
| 155 | print(*args, file=sys.stderr) |
| 156 | except (IOError, AttributeError): |
| 157 | pass # Some environments do not allow printing (mod_wsgi) |
| 158 | |
| 159 | |
| 160 | # A bug in functools causes it to break if the wrapper is an instance method |
no outgoing calls
no test coverage detected
searching dependent graphs…