Skip to content
Snippets Groups Projects
Commit 77ac2d15 authored by Gavin M. Roy's avatar Gavin M. Roy
Browse files

Conditional psycopg2cffi import for pypy3

parent b3eec7a2
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -5,7 +5,10 @@ Tests for functionality in the tornado_session module
import mock
import unittest
 
from psycopg2 import extras
try:
from psycopg2cffi import extras
except ImportError:
from psycopg2 import extras
 
from tornado import concurrent
from tornado import gen
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment