classification
Title: Strange shebang line in test_pep263
Type: behavior Stage:
Components: Tests Versions: Python 2.6
process
Status: closed Resolution: out of date
Dependencies: Superseder:
Assigned To: Nosy List: georg.brandl, wiz (2)
Priority: Keywords

Created on 2009-10-25 20:01 by wiz, last changed 2009-10-25 20:12 by georg.brandl.

Messages (2)
msg94458 - (view) Author: Thomas Klausner (wiz) Date: 2009-10-25 20:01
In Python-2.6.3, test_pep263.py starts with the following line:
#! -*- coding: koi8-r -*-
When this is executed by a shell, it looks for the interpreter "-*-".
I guess the '!' is superfluous there, or it should be something like
#! /usr/bin/env python
# -*- coding: koi8-r -*-
instead.
msg94459 - (view) Author: Georg Brandl (georg.brandl) Date: 2009-10-25 20:12
This has already been fixed in r69619.
History
Date User Action Args
2009-10-25 20:12:34georg.brandlsetstatus: open -> closed

nosy: + georg.brandl
messages: + msg94459

resolution: out of date
2009-10-25 20:01:47wizcreate