Since we no longer officially support Python 2.5, there's no *need* to
use a fallback JSON library. Removing it makes our dependencies
cleaner, and JSON-parsing speed is not likely to be a large fraction
of irkerd cycles anyway.
import SocketServer
import argparse
import logging
-try:
- import simplejson as json # Faster, also makes us Python-2.4-compatible
-except ImportError:
- import json
+import json
import random
import re
import select