Mercurial > hg
changeset 12865:4c50552fc9bc stable
*: kill all unnecessary shebangs.
author | Dan Villiom Podlaski Christiansen <danchr@gmail.com> |
---|---|
date | Tue, 26 Oct 2010 12:18:39 +0200 |
parents | ef0b8b1bcd63 |
children | eddc20306ab6 |
files | contrib/setup3k.py contrib/shrink-revlog.py doc/hgmanpage.py i18n/polib.py setup.py tests/test-bdiff.py tests/test-demandimport.py tests/test-hg-parseurl.py tests/test-hybridencode.py tests/test-minirst.py tests/test-ui-color.py tests/test-ui-config.py tests/test-ui-verbosity.py tests/test-url.py |
diffstat | 14 files changed, 0 insertions(+), 23 deletions(-) [+] |
line wrap: on
line diff
--- a/contrib/setup3k.py Tue Oct 26 12:18:37 2010 +0200 +++ b/contrib/setup3k.py Tue Oct 26 12:18:39 2010 +0200 @@ -1,4 +1,3 @@ -#!/usr/bin/env python # # This is an experimental py3k-enabled mercurial setup script. #
--- a/contrib/shrink-revlog.py Tue Oct 26 12:18:37 2010 +0200 +++ b/contrib/shrink-revlog.py Tue Oct 26 12:18:39 2010 +0200 @@ -1,5 +1,3 @@ -#!/usr/bin/env python - """\ reorder a revlog (the manifest by default) to save space
--- a/doc/hgmanpage.py Tue Oct 26 12:18:37 2010 +0200 +++ b/doc/hgmanpage.py Tue Oct 26 12:18:39 2010 +0200 @@ -1,4 +1,3 @@ -#!/usr/bin/env python # -*- coding: utf-8 -*- # $Id: manpage.py 6110 2009-08-31 14:40:33Z grubert $ # Author: Engelbert Gruber <grubert@users.sourceforge.net>
--- a/i18n/polib.py Tue Oct 26 12:18:37 2010 +0200 +++ b/i18n/polib.py Tue Oct 26 12:18:39 2010 +0200 @@ -1,4 +1,3 @@ -#!/usr/bin/env python # -*- coding: utf-8 -*- # no-check-code #
--- a/setup.py Tue Oct 26 12:18:37 2010 +0200 +++ b/setup.py Tue Oct 26 12:18:39 2010 +0200 @@ -1,4 +1,3 @@ -#!/usr/bin/env python # # This is the mercurial setup script. #
--- a/tests/test-bdiff.py Tue Oct 26 12:18:37 2010 +0200 +++ b/tests/test-bdiff.py Tue Oct 26 12:18:39 2010 +0200 @@ -1,5 +1,3 @@ -#!/usr/bin/env python - import struct from mercurial import bdiff, mpatch
--- a/tests/test-demandimport.py Tue Oct 26 12:18:37 2010 +0200 +++ b/tests/test-demandimport.py Tue Oct 26 12:18:39 2010 +0200 @@ -1,5 +1,3 @@ -#!/usr/bin/env python - from mercurial import demandimport demandimport.enable()
--- a/tests/test-hg-parseurl.py Tue Oct 26 12:18:37 2010 +0200 +++ b/tests/test-hg-parseurl.py Tue Oct 26 12:18:39 2010 +0200 @@ -1,5 +1,3 @@ -#!/usr/bin/env python - from mercurial.hg import parseurl def testparse(url, branch=[]):
--- a/tests/test-hybridencode.py Tue Oct 26 12:18:37 2010 +0200 +++ b/tests/test-hybridencode.py Tue Oct 26 12:18:39 2010 +0200 @@ -1,5 +1,3 @@ -#!/usr/bin/env python - from mercurial import store auxencode = lambda f: store._auxencode(f, True)
--- a/tests/test-minirst.py Tue Oct 26 12:18:37 2010 +0200 +++ b/tests/test-minirst.py Tue Oct 26 12:18:39 2010 +0200 @@ -1,5 +1,3 @@ -#!/usr/bin/env python - from pprint import pprint from mercurial import minirst
--- a/tests/test-ui-color.py Tue Oct 26 12:18:37 2010 +0200 +++ b/tests/test-ui-color.py Tue Oct 26 12:18:39 2010 +0200 @@ -1,5 +1,3 @@ -#!/usr/bin/env python - from hgext import color # ensure errors aren't buffered
--- a/tests/test-ui-config.py Tue Oct 26 12:18:37 2010 +0200 +++ b/tests/test-ui-config.py Tue Oct 26 12:18:39 2010 +0200 @@ -1,5 +1,3 @@ -#!/usr/bin/env python - from mercurial import ui, dispatch, error testui = ui.ui()