ALT Linux Bugzilla
– Attachment 3316 Details for
Bug 18826
Файлы, имеющие '\0' в закоментированной строке обрабатываются не корректно
New bug
|
Search
|
[?]
|
Help
Register
|
Log In
[x]
|
Forgot Password
Login:
[x]
|
EN
|
RU
[patch]
Добавляет пропуск строк начинающихся с '#' так как они все-равно являются коментариями
python.req.py.patch (text/plain), 596 bytes, created by
rlz
on 2009-02-13 16:19:14 MSK
(
hide
)
Description:
Добавляет пропуск строк начинающихся с '#' так как они все-равно являются коментариями
Filename:
MIME Type:
Creator:
rlz
Created:
2009-02-13 16:19:14 MSK
Size:
596 bytes
patch
obsolete
>--- python.req.py 2009-02-13 15:51:25 +0300 >+++ python.req.py.new 2009-02-13 15:52:03 +0300 >@@ -177,7 +177,7 @@ > for src in files : > ext = os.path.splitext(basename(src))[1] > if ext not in ['.so','.pyc','.pyo','.pth'] : >- lines = [ line.rstrip().replace('\r','') for line in open(src).readlines() ] >+ lines = [ line.rstrip().replace('\r','') for line in open(src).readlines() if not line.startswith('#')] > encmod = None > if len(lines) > 0 : > encmod = need_encoding_module(lines[0])
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 18826
: 3316