mercurial/debugcommands.py
changeset 37057 2ec1fb9de638
parent 37051 40206e227412
child 37084 f0b6fbea00cf
--- a/mercurial/debugcommands.py	Wed Mar 14 14:01:16 2018 -0700
+++ b/mercurial/debugcommands.py	Wed Mar 14 16:51:34 2018 -0700
@@ -2765,12 +2765,14 @@
     syntax.
 
     A frame is composed as a type, flags, and payload. These can be parsed
-    from a string of the form ``<type> <flags> <payload>``. That is, 3
-    space-delimited strings.
+    from a string of the form ``<requestid> <type> <flags> <payload>``. That is,
+    4 space-delimited strings.
 
     ``payload`` is the simplest: it is evaluated as a Python byte string
     literal.
 
+    ``requestid`` is an integer defining the request identifier.
+
     ``type`` can be an integer value for the frame type or the string name
     of the type. The strings are defined in ``wireprotoframing.py``. e.g.
     ``command-name``.