Skip to content

Commit 67d3426

Browse files
committed
Merge branch 'develop' of /cygdrive/z/gerencia de modelagem de credito/5.PastasPessoais/felipe_martins_vieira/my_git_folders/python-mode into develop
2 parents 7668d1b + 2e027cb commit 67d3426

File tree

215 files changed

+19680
-37482
lines changed

Some content is hidden

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

215 files changed

+19680
-37482
lines changed

.github/stale.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Number of days of inactivity before an issue becomes stale
2+
daysUntilStale: 150
3+
# Number of days of inactivity before a stale issue is closed
4+
daysUntilClose: 21
5+
# Issues with these labels will never be considered stale
6+
exemptLabels:
7+
- pinned
8+
- security
9+
# Label to use when marking an issue as stale
10+
staleLabel: inactive
11+
# Comment to post when marking an issue as stale. Set to `false` to disable
12+
markComment: >
13+
This issue has been automatically marked as stale because it has not had
14+
recent activity. It will be closed if no further activity occurs. Thank you
15+
for your contributions.
16+
# Comment to post when closing a stale issue. Set to `false` to disable
17+
closeComment: >
18+
Closed due to inactivity.

.gitmodules

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
[submodule "submodules/autopep8"]
2+
path = submodules/autopep8
3+
url = https://github.com/hhatto/autopep8
4+
ignore = dirty
5+
[submodule "submodules/pycodestyle"]
6+
path = submodules/pycodestyle
7+
url = https://github.com/PyCQA/pycodestyle
8+
ignore = dirty
9+
[submodule "submodules/pydocstyle"]
10+
path = submodules/pydocstyle
11+
url = https://github.com/PyCQA/pydocstyle/
12+
ignore = dirty
13+
[submodule "submodules/mccabe"]
14+
path = submodules/mccabe
15+
url = https://github.com/PyCQA/mccabe
16+
ignore = dirty
17+
[submodule "submodules/pyflakes"]
18+
path = submodules/pyflakes
19+
url = https://github.com/PyCQA/pyflakes
20+
ignore = dirty
21+
[submodule "submodules/snowball_py"]
22+
path = submodules/snowball_py
23+
url = https://github.com/shibukawa/snowball_py
24+
ignore = dirty
25+
[submodule "submodules/pylama"]
26+
path = submodules/pylama
27+
url = https://github.com/fmv1992/pylama
28+
ignore = dirty

.ruby-gemset

Lines changed: 0 additions & 1 deletion
This file was deleted.

.ruby-version

Lines changed: 0 additions & 1 deletion
This file was deleted.

.travis.yml

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
1-
language: ruby
2-
python: "2.7"
3-
rvm:
4-
- 1.9.3
5-
script:
6-
- make travis
1+
# Build vim from source with python3 support and execute tests.
2+
branches:
3+
only:
4+
- develop
5+
before_install:
6+
- export ORIGINAL_FOLDER=$PWD
7+
- sudo apt install libncurses5-dev libgnome2-dev libgnomeui-dev libgtk2.0-dev libatk1.0-dev libbonoboui2-dev libcairo2-dev libx11-dev libxpm-dev libxt-dev python-dev python3-dev lua5.1 lua5.1-dev libperl-dev git
8+
- sudo apt remove vim vim-runtime gvim
9+
- cd /tmp
10+
- git clone https://github.com/vim/vim.git
11+
- cd vim
12+
- ./configure --with-features=huge --enable-multibyte --enable-python3interp=yes --with-python3-config-dir=/usr/lib/python3.5/config --enable-perlinterp=yes --enable-luainterp=yes --enable-gui=gtk2 --enable-cscope --prefix=/usr/local
13+
- sudo make && sudo make install
14+
- cd $ORIGINAL_FOLDER
15+
install: git clone --recursive https://github.com/python-mode/python-mode
16+
script: vim --version && cd ./tests && bash -x ./test.sh

AUTHORS

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1-
Maintainers:
1+
Author:
22

33
* Kirill Klenov <horneds@gmail.com>
4-
* Bryce Guinta (https://github.com/brycepg)
54

5+
Maintainers:
6+
7+
* Felipe M. Vieira (https://github.com/fmv1992)
68

79
Contributors:
810

@@ -15,6 +17,7 @@ Contributors:
1517
* Boris Filippov (http://github.com/frenzykryger);
1618
* Brad Mease (http://github.com/bmease)
1719
* Brendan Maguire (https://github.com/brendanmaguire)
20+
* Bryce Guinta (https://github.com/brycepg)
1821
* Daniel Hahler (http://github.com/blueyed)
1922
* David Vogt (http://github.com/winged);
2023
* Denis Kasak (http://github.com/dkasak);

Changelog.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ do not get loaded.
303303

304304
::
305305

306-
2082d0b8fed7fff10b3f335cefc6a51dd25ee0b2 let g:pymode_syntax_builtin_objs = 2
306+
let g:pymode_syntax_builtin_objs = 0
307307
let g:pymode_syntax_builtin_funcs = 0
308308

309309
* Change namespace of syntax variables

Gemfile

Lines changed: 0 additions & 3 deletions
This file was deleted.

Makefile

Lines changed: 0 additions & 98 deletions
This file was deleted.

0 commit comments

Comments
 (0)