mercurial/templatefilters.py
changeset 37948 a25513263075
parent 37230 63144f33c8bb
child 38024 f5a1aa8c6987
--- a/mercurial/templatefilters.py	Sun Apr 23 13:15:30 2017 +0900
+++ b/mercurial/templatefilters.py	Sat Jan 16 19:23:53 2016 +0900
@@ -238,6 +238,7 @@
 
 @templatefilter('json')
 def json(obj, paranoid=True):
+    """Any object. Serializes the object to a JSON formatted text."""
     if obj is None:
         return 'null'
     elif obj is False: