[Python-checkins] r84363 - in python/branches/py3k/Lib: ast.py distutils/command/bdist_msi.py distutils/tests/test_dist.py encodings/punycode.py getopt.py msilib/__init__.py sqlite3/__init__.py sqlite3/dbapi2.py

florent.xicluna python-checkins at python.org
Mon Aug 30 16:05:50 CEST 2010


Author: florent.xicluna
Date: Mon Aug 30 16:05:50 2010
New Revision: 84363

Log:
remove pointless coding cookies

Modified:
   python/branches/py3k/Lib/ast.py
   python/branches/py3k/Lib/distutils/command/bdist_msi.py
   python/branches/py3k/Lib/distutils/tests/test_dist.py
   python/branches/py3k/Lib/encodings/punycode.py
   python/branches/py3k/Lib/getopt.py
   python/branches/py3k/Lib/msilib/__init__.py
   python/branches/py3k/Lib/sqlite3/__init__.py
   python/branches/py3k/Lib/sqlite3/dbapi2.py

Modified: python/branches/py3k/Lib/ast.py
==============================================================================
--- python/branches/py3k/Lib/ast.py	(original)
+++ python/branches/py3k/Lib/ast.py	Mon Aug 30 16:05:50 2010
@@ -1,4 +1,3 @@
-# -*- coding: utf-8 -*-
 """
     ast
     ~~~

Modified: python/branches/py3k/Lib/distutils/command/bdist_msi.py
==============================================================================
--- python/branches/py3k/Lib/distutils/command/bdist_msi.py	(original)
+++ python/branches/py3k/Lib/distutils/command/bdist_msi.py	Mon Aug 30 16:05:50 2010
@@ -1,4 +1,3 @@
-# -*- coding: utf-8 -*-
 # Copyright (C) 2005, 2006 Martin von Löwis
 # Licensed to PSF under a Contributor Agreement.
 # The bdist_wininst command proper

Modified: python/branches/py3k/Lib/distutils/tests/test_dist.py
==============================================================================
--- python/branches/py3k/Lib/distutils/tests/test_dist.py	(original)
+++ python/branches/py3k/Lib/distutils/tests/test_dist.py	Mon Aug 30 16:05:50 2010
@@ -1,4 +1,3 @@
-# -*- coding: utf8 -*-
 """Tests for distutils.dist."""
 import os
 import io

Modified: python/branches/py3k/Lib/encodings/punycode.py
==============================================================================
--- python/branches/py3k/Lib/encodings/punycode.py	(original)
+++ python/branches/py3k/Lib/encodings/punycode.py	Mon Aug 30 16:05:50 2010
@@ -1,4 +1,3 @@
-# -*- coding: utf-8 -*-
 """ Codec for the Punicode encoding, as specified in RFC 3492
 
 Written by Martin v. Löwis.

Modified: python/branches/py3k/Lib/getopt.py
==============================================================================
--- python/branches/py3k/Lib/getopt.py	(original)
+++ python/branches/py3k/Lib/getopt.py	Mon Aug 30 16:05:50 2010
@@ -1,4 +1,3 @@
-# -*- coding: utf-8 -*-
 """Parser for command line options.
 
 This module helps scripts to parse the command line arguments in

Modified: python/branches/py3k/Lib/msilib/__init__.py
==============================================================================
--- python/branches/py3k/Lib/msilib/__init__.py	(original)
+++ python/branches/py3k/Lib/msilib/__init__.py	Mon Aug 30 16:05:50 2010
@@ -1,4 +1,3 @@
-# -*- coding: utf-8 -*-
 # Copyright (C) 2005 Martin v. Löwis
 # Licensed to PSF under a Contributor Agreement.
 from _msi import *

Modified: python/branches/py3k/Lib/sqlite3/__init__.py
==============================================================================
--- python/branches/py3k/Lib/sqlite3/__init__.py	(original)
+++ python/branches/py3k/Lib/sqlite3/__init__.py	Mon Aug 30 16:05:50 2010
@@ -1,7 +1,6 @@
-#-*- coding: ISO-8859-1 -*-
 # pysqlite2/__init__.py: the pysqlite2 package.
 #
-# Copyright (C) 2005 Gerhard Häring <gh at ghaering.de>
+# Copyright (C) 2005 Gerhard Häring <gh at ghaering.de>
 #
 # This file is part of pysqlite.
 #

Modified: python/branches/py3k/Lib/sqlite3/dbapi2.py
==============================================================================
--- python/branches/py3k/Lib/sqlite3/dbapi2.py	(original)
+++ python/branches/py3k/Lib/sqlite3/dbapi2.py	Mon Aug 30 16:05:50 2010
@@ -1,7 +1,6 @@
-#-*- coding: ISO-8859-1 -*-
 # pysqlite2/dbapi2.py: the DB-API 2.0 interface
 #
-# Copyright (C) 2004-2005 Gerhard Häring <gh at ghaering.de>
+# Copyright (C) 2004-2005 Gerhard Häring <gh at ghaering.de>
 #
 # This file is part of pysqlite.
 #


More information about the Python-checkins mailing list