Skip to content

Commit 9c88704

Browse files
committed
Merge branch 'release/0.6.17'
2 parents 4d7bfe2 + cbfc8cd commit 9c88704

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+1133
-752
lines changed

AUTHORS

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
Maintainer:
2+
3+
* Kirill Klenov <[email protected]>
4+
5+
6+
Contributors:
7+
8+
* Pedro Algarvio (s0undt3ch);
9+
* Alvin Francis (alvinfrancis);
10+
* Boris Filippov (frenzykryger);
11+
* Denis Kasak (dkasak);
12+
* Steve Losh (sjl);
13+
* nixon;
14+
* tramchamploo;
15+
* Benjamin Ruston (bruston);
16+
* Robert David Grant (bgrant);
17+
* Florent Xicluna (florentx);
18+
* Piet Delport (pjdelport);
19+
* lee (loyalpartner);
20+
* Mohammed (mbadran);
21+
* Ronald Andreu Kaiser (cathoderay);
22+
* David Vogt (winged);
23+
* Igor Guerrero (igorgue);
24+
* Martin Brochhaus (mbrochh);
25+
* Sorin Ionescu (sorin-ionescu);
26+
* Dirk Wallenstein (dirkwallenstein);
27+
* Jonathan McCall (Jonnymcc);
28+
* Fredrik Henrysson (fhenrysson);
29+
* Lowe Thiderman (thiderman);
30+
* Naoya Inada (naoina);

Changelog.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
Changelog
22
=========
33

4+
## 2013-05-03 0.6.17
5+
--------------------
6+
* Update `Pylint` to version 0.28.0;
7+
* Update `pyflakes` to version 0.7.3;
8+
* Fixed `lint_ignore` options bug;
9+
* Fixed encoding problems when code running;
10+
411
## 2013-04-26 0.6.16
512
--------------------
613
* Improvement folding (thanks @alvinfrancis);

README.rst

Lines changed: 3 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -28,22 +28,6 @@ Another old presentation here: http://www.youtube.com/watch?v=YhqsjUUHj6g
2828
.. contents::
2929

3030

31-
Changelog
32-
=========
33-
34-
## 2013-03-15 0.6.12
35-
--------------------
36-
* Update `PEP8` to version 1.4.5;
37-
* Update `Pylint` to version 0.27.0;
38-
* Update `autopep8` to version 0.8.7;
39-
* Fix breakpoint definition;
40-
* Update python syntax;
41-
* Fixed run-time error when output non-ascii in multibyte locale;
42-
* Move initialization into ftplugin as it is python specific;
43-
* Pyrex (Cython) files support;
44-
* Support `raw_input` in run python code;
45-
46-
4731
Requirements
4832
============
4933

@@ -469,13 +453,15 @@ at https://github.com/klen/python-mode/issues
469453
Contributing
470454
============
471455

456+
See in the `AUTHORS` file.
457+
472458
Development of pylint-mode happens at github: https://github.com/klen/python-mode
473459

474460

475461
Copyright
476462
=========
477463

478-
Copyright (C) 2012 Kirill Klenov (klen_)
464+
Copyright © 2013 Kirill Klenov (klen_)
479465

480466
**Rope**
481467
Copyright (C) 2006-2010 Ali Gholami Rudi

autoload/pymode/run.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ fun! pymode#run#Run(line1, line2) "{{{
3131
python << EOF
3232
if out:
3333
vim.command("call pymode#TempBuffer()")
34-
vim.current.buffer.append([x.encode(enc) for x in out.split('\n')], 0)
34+
vim.current.buffer.append([x.decode("utf-8").encode(enc) for x in out.split('\n')], 0)
3535
vim.command("wincmd p")
3636
else:
3737
vim.command('call pymode#WideMessage("No output.")')

doc/pymode.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
(__) (__) (__) (_) (_)(_____)(_)\_) (_/\/\_)(_____)(____/(____) ~
77

88

9-
Version: 0.6.16
9+
Version: 0.6.17
1010

1111
==============================================================================
1212
CONTENTS *Python-mode-contents*
@@ -371,6 +371,7 @@ buffers: >
371371
setlocal number
372372
setlocal nowrap
373373
setlocal textwidth=80
374+
setlocal commentstring=#%s
374375
<
375376
------------------------------------------------------------------------------
376377
*'pymode_motion'*

ftplugin/python/init-pymode.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ if exists('did_init_pymode_vim')
33
endif
44
let did_init_pymode_vim = 1
55

6-
let g:pymode_version = "0.6.16"
6+
let g:pymode_version = "0.6.17"
77

88
com! PymodeVersion echomsg "Current python-mode version: " . g:pymode_version
99

ftplugin/python/pymode.vim

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ if pymode#Option('options')
2626
endif
2727
setlocal nowrap
2828
setlocal textwidth=79
29+
setlocal commentstring=#%s
2930
endif
3031

3132
" }}}

0 commit comments

Comments
 (0)