irkerd: Drop simplejson replacement
authorW. Trevor King <wking@tremily.us>
Fri, 7 Mar 2014 04:21:17 +0000 (20:21 -0800)
committerEric S. Raymond <esr@thyrsus.com>
Tue, 11 Mar 2014 04:48:13 +0000 (00:48 -0400)
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.

irkerd

diff --git a/irkerd b/irkerd
index 71a8c10baec015ee9a212890353c81c204c41694..3f64ef97a9d4194552aa7231f78de61c81459619 100755 (executable)
--- a/irkerd
+++ b/irkerd
@@ -45,10 +45,7 @@ import Queue
 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