Mercurial > vim
annotate src/dehqx.py @ 19805:2dc5e6ddeb4c v8.2.0459
patch 8.2.0459: cannot check if a function name is correct
Commit: https://github.com/vim/vim/commit/15c476023f3c5fb32eb1936c5eb5f0f5f413f3c7
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Mar 26 22:16:48 2020 +0100
patch 8.2.0459: cannot check if a function name is correct
Problem: Cannot check if a function name is correct.
Solution: Add "?funcname" to exists().
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 26 Mar 2020 22:30:03 +0100 |
parents | 54756c29118c |
children |
rev | line source |
---|---|
7 | 1 # Python script to get both the data and resource fork from a BinHex encoded |
2 # file. | |
3614 | 3 # Author: MURAOKA Taro <koron.kaoriya@gmail.com> |
13549
54756c29118c
patch 8.0.1648: resource fork tool doesn't work on Python 3
Christian Brabandt <cb@256bit.org>
parents:
3614
diff
changeset
|
4 # Last Change: 2018 Mar 27 |
3614 | 5 # |
6 # Copyright (C) 2003,12 MURAOKA Taro <koron.kaoriya@gmail.com> | |
7 # THIS FILE IS DISTRIBUTED UNDER THE VIM LICENSE. | |
7 | 8 |
9 import sys | |
10 import binhex | |
11 | |
12 input = sys.argv[1] | |
13 conv = binhex.HexBin(input) | |
14 info = conv.FInfo | |
15 out = conv.FName | |
16 out_data = out | |
17 out_rsrc = out + '.rsrcfork' | |
13549
54756c29118c
patch 8.0.1648: resource fork tool doesn't work on Python 3
Christian Brabandt <cb@256bit.org>
parents:
3614
diff
changeset
|
18 |
54756c29118c
patch 8.0.1648: resource fork tool doesn't work on Python 3
Christian Brabandt <cb@256bit.org>
parents:
3614
diff
changeset
|
19 # This uses the print statement on Python 2, print function on Python 3. |
54756c29118c
patch 8.0.1648: resource fork tool doesn't work on Python 3
Christian Brabandt <cb@256bit.org>
parents:
3614
diff
changeset
|
20 #print('out_rsrc=' + out_rsrc) |
54756c29118c
patch 8.0.1648: resource fork tool doesn't work on Python 3
Christian Brabandt <cb@256bit.org>
parents:
3614
diff
changeset
|
21 print('In file: ' + input) |
7 | 22 |
23 outfile = open(out_data, 'wb') | |
13549
54756c29118c
patch 8.0.1648: resource fork tool doesn't work on Python 3
Christian Brabandt <cb@256bit.org>
parents:
3614
diff
changeset
|
24 print(' Out data fork: ' + out_data) |
7 | 25 while 1: |
26 d = conv.read(128000) | |
27 if not d: break | |
28 outfile.write(d) | |
29 outfile.close() | |
30 conv.close_data() | |
31 | |
32 d = conv.read_rsrc(128000) | |
33 if d: | |
13549
54756c29118c
patch 8.0.1648: resource fork tool doesn't work on Python 3
Christian Brabandt <cb@256bit.org>
parents:
3614
diff
changeset
|
34 print(' Out rsrc fork: ' + out_rsrc) |
7 | 35 outfile = open(out_rsrc, 'wb') |
36 outfile.write(d) | |
37 while 1: | |
38 d = conv.read_rsrc(128000) | |
39 if not d: break | |
40 outfile.write(d) | |
41 outfile.close() | |
42 | |
43 conv.close() | |
44 | |
45 # vim:set ts=8 sts=4 sw=4 et: |