# HG changeset patch # User Augie Fackler # Date 1506771820 14400 # Node ID 76b334b9f45c194445e81b81bcd095301a6de9df # Parent 2a360445afa0e64186795b5a61c4a0329e9f5c10 commandserver: remove superfluous pass statements diff -r 2a360445afa0 -r 76b334b9f45c mercurial/commandserver.py --- a/mercurial/commandserver.py Sat Sep 30 07:43:26 2017 -0400 +++ b/mercurial/commandserver.py Sat Sep 30 07:43:40 2017 -0400 @@ -184,7 +184,6 @@ def cleanup(self): """release and restore resources taken during server session""" - pass def _read(self, size): if not size: @@ -422,7 +421,6 @@ def newconnection(self): """Called when main process notices new connection""" - pass def createcmdserver(self, repo, conn, fin, fout): """Create new command server instance; called in the process that