Skip to content

Commit

Permalink
py3 compat
Browse files Browse the repository at this point in the history
  • Loading branch information
mcdonc authored and Reed O'Brien committed Mar 13, 2012
1 parent 5d5d2e6 commit 0e0e9af
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion pyramid/tests/test_scripts/test_pserve.py
@@ -1,9 +1,14 @@
import atexit
import __builtin__
import os
import tempfile
import unittest

from pyramid.compat import PY3
if PY3: # pragma: no cover
import builtins as __builtin__
else:
import __builtin__

class TestPServeCommand(unittest.TestCase):
def setUp(self):
from pyramid.compat import NativeIO
Expand Down

0 comments on commit 0e0e9af

Please sign in to comment.