diff mercurial/lsprof.py @ 51672:99632adff795 stable

py3: fix type of some elements of __all__ lists
author Manuel Jacob <me@manueljacob.de>
date Mon, 05 Aug 2024 20:47:17 +0200
parents 18c8c18993f0
children f4733654f144
line wrap: on
line diff
--- a/mercurial/lsprof.py	Thu Aug 01 11:14:58 2024 +0100
+++ b/mercurial/lsprof.py	Mon Aug 05 20:47:17 2024 +0200
@@ -6,7 +6,7 @@
 # PyPy doesn't expose profiler_entry from the module.
 profiler_entry = getattr(_lsprof, 'profiler_entry', None)
 
-__all__ = [b'profile', b'Stats']
+__all__ = ['profile', 'Stats']
 
 
 def profile(f, *args, **kwds):