Skip to content

Instantly share code, notes, and snippets.

@hirokazumiyaji
Created August 27, 2015 13:07
Show Gist options
  • Save hirokazumiyaji/01eb0d8619a85cc71a00 to your computer and use it in GitHub Desktop.
Save hirokazumiyaji/01eb0d8619a85cc71a00 to your computer and use it in GitHub Desktop.
ujson -> json patch when pypy
import sys
def patch_json():
try:
import __pypy__
except ImportError:
pass
else:
import json
sys.modules['ujson'] = json
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment