Skip to content

Commit f854799

Browse files
committed
Make sqlite3 tests editable with Emacs
Change the coding declaration from ISO-8859-1 to iso-8859-1. Emacs doesn't understand the former.
1 parent c317a1c commit f854799

7 files changed

Lines changed: 7 additions & 7 deletions

File tree

Lib/sqlite3/test/dbapi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#-*- coding: ISO-8859-1 -*-
1+
#-*- coding: iso-8859-1 -*-
22
# pysqlite2/test/dbapi.py: tests for DB-API compliance
33
#
44
# Copyright (C) 2004-2010 Gerhard Häring <gh@ghaering.de>

Lib/sqlite3/test/factory.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#-*- coding: ISO-8859-1 -*-
1+
#-*- coding: iso-8859-1 -*-
22
# pysqlite2/test/factory.py: tests for the various factories in pysqlite
33
#
44
# Copyright (C) 2005-2007 Gerhard Häring <gh@ghaering.de>

Lib/sqlite3/test/hooks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#-*- coding: ISO-8859-1 -*-
1+
#-*- coding: iso-8859-1 -*-
22
# pysqlite2/test/hooks.py: tests for various SQLite-specific hooks
33
#
44
# Copyright (C) 2006-2007 Gerhard Häring <gh@ghaering.de>

Lib/sqlite3/test/regression.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#-*- coding: ISO-8859-1 -*-
1+
#-*- coding: iso-8859-1 -*-
22
# pysqlite2/test/regression.py: pysqlite regression tests
33
#
44
# Copyright (C) 2006-2010 Gerhard Häring <gh@ghaering.de>

Lib/sqlite3/test/transactions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#-*- coding: ISO-8859-1 -*-
1+
#-*- coding: iso-8859-1 -*-
22
# pysqlite2/test/transactions.py: tests transactions
33
#
44
# Copyright (C) 2005-2007 Gerhard Häring <gh@ghaering.de>

Lib/sqlite3/test/types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#-*- coding: ISO-8859-1 -*-
1+
#-*- coding: iso-8859-1 -*-
22
# pysqlite2/test/types.py: tests for type conversion and detection
33
#
44
# Copyright (C) 2005 Gerhard Häring <gh@ghaering.de>

Lib/sqlite3/test/userfunctions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#-*- coding: ISO-8859-1 -*-
1+
#-*- coding: iso-8859-1 -*-
22
# pysqlite2/test/userfunctions.py: tests for user-defined functions and
33
# aggregates.
44
#

0 commit comments

Comments
 (0)