diff mercurial/transaction.py @ 32331:bd872f64a8ba

cleanup: use set literals We no longer support Python 2.6, so we can now use set literals.
author Martin von Zweigbergk <martinvonz@google.com>
date Fri, 10 Feb 2017 16:56:29 -0800
parents 976681123416
children aa91085cadf3
line wrap: on
line diff
--- a/mercurial/transaction.py	Sat May 06 04:51:25 2017 +0530
+++ b/mercurial/transaction.py	Fri Feb 10 16:56:29 2017 -0800
@@ -26,10 +26,10 @@
 # These are the file generators that should only be executed after the
 # finalizers are done, since they rely on the output of the finalizers (like
 # the changelog having been written).
-postfinalizegenerators = set([
+postfinalizegenerators = {
     'bookmarks',
     'dirstate'
-])
+}
 
 gengroupall='all'
 gengroupprefinalize='prefinalize'