diff --git a/mercurial/context.py b/mercurial/context.py
index c6976a4a39db2a6f9b89208680da662566471dc1_bWVyY3VyaWFsL2NvbnRleHQucHk=..168283c8dedff0c6536bb2197b053941a463870a_bWVyY3VyaWFsL2NvbnRleHQucHk= 100644
--- a/mercurial/context.py
+++ b/mercurial/context.py
@@ -86,6 +86,14 @@
         """
         return s
 
+    def _poststatus(self, other, s, match, listignored, listclean, listunknown):
+        """provide a hook to allow child objects to postprocess status results
+
+        For example, this allows other contexts, such as workingctx, to filter
+        suspect symlinks in the case of FAT32 and NTFS filesytems.
+        """
+        return s
+
     def _buildstatus(self, other, s, match, listignored, listclean,
                         listunknown):
         """build a status with respect to another context"""