mercurial/exchange.py
changeset 32291 bd872f64a8ba
parent 32287 df3cf9422e1b
child 32515 e70d6dbde713
--- a/mercurial/exchange.py	Sat May 06 04:51:25 2017 +0530
+++ b/mercurial/exchange.py	Fri Feb 10 16:56:29 2017 -0800
@@ -43,7 +43,7 @@
                         }
 
 # Compression engines allowed in version 1. THIS SHOULD NEVER CHANGE.
-_bundlespecv1compengines = set(['gzip', 'bzip2', 'none'])
+_bundlespecv1compengines = {'gzip', 'bzip2', 'none'}
 
 def parsebundlespec(repo, spec, strict=True, externalnames=False):
     """Parse a bundle string specification into parts.
@@ -1522,7 +1522,7 @@
 
 def caps20to10(repo):
     """return a set with appropriate options to use bundle20 during getbundle"""
-    caps = set(['HG20'])
+    caps = {'HG20'}
     capsblob = bundle2.encodecaps(bundle2.getrepocaps(repo))
     caps.add('bundle2=' + urlreq.quote(capsblob))
     return caps