View Problem

Define an unmodifiable empty map

DiskEdit
python 2.6
import collections
EmptyDict = collections.namedtuple("EmptyDict", "")
e = EmptyDict()
DiskEdit
cpp
const std::map<T1,T2> immutable_map_instance_of_type_t1_to_t2;
DiskEdit
clojure
; Clojure maps are immutable
(def m {})

Submit a new solution for python, cpp, or clojure
There are 18 other solutions in additional languages (erlang, fantom, fsharp, groovy ...)