mirror of
https://github.com/davidhalter/jedi.git
synced 2026-05-24 17:28:36 +08:00
Merge branch 'dev' of github.com:davidhalter/jedi into dev
This commit is contained in:
@@ -16,3 +16,4 @@ Yasha Borevich (@jjay)
|
|||||||
Aaron Griffin
|
Aaron Griffin
|
||||||
andviro (@andviro)
|
andviro (@andviro)
|
||||||
Mike Gilbert (@floppym)
|
Mike Gilbert (@floppym)
|
||||||
|
Aaron Meurer (@asmeurer)
|
||||||
|
|||||||
+12
-1
@@ -6,8 +6,19 @@ are ok in the master branch.
|
|||||||
3. Add your name to AUTHORS.txt
|
3. Add your name to AUTHORS.txt
|
||||||
4. Push to your fork and submit a **pull request to the dev branch**.
|
4. Push to your fork and submit a **pull request to the dev branch**.
|
||||||
|
|
||||||
|
If you have have previously filed a GitHub issue and want to contribute code
|
||||||
|
that addresses that issue, we prefer it if you use
|
||||||
|
[hub](https://github.com/github/hub) to convert your existing issue to a pull
|
||||||
|
request. To do that, first push the changes to a separate branch in your fork
|
||||||
|
and then issue the following command:
|
||||||
|
|
||||||
|
hub pull-request -b davidhalter:dev -i <issue-number> -h <your-github-username>:<your-branch-name>
|
||||||
|
|
||||||
|
It's no strict requirement though, if you don't have hub installed or prefer to
|
||||||
|
use the web interface, then feel free to post a traditional pull request.
|
||||||
|
|
||||||
My **master** branch is a 100% stable (should be). I only push to it after I am
|
My **master** branch is a 100% stable (should be). I only push to it after I am
|
||||||
certain that things are working out. Many people are using Jedi directly from
|
certain that things are working out. Many people are using Jedi directly from
|
||||||
the github master branch.
|
the github master branch.
|
||||||
|
|
||||||
Please use Pep8 to style your code.
|
Please use PEP8 to style your code.
|
||||||
|
|||||||
+1
-1
@@ -131,5 +131,5 @@ For more detailed information visit the `testing documentation
|
|||||||
.. _jedi-vim: https://github.com/davidhalter/jedi-vim
|
.. _jedi-vim: https://github.com/davidhalter/jedi-vim
|
||||||
.. _youcompleteme: http://valloric.github.io/YouCompleteMe/
|
.. _youcompleteme: http://valloric.github.io/YouCompleteMe/
|
||||||
.. _Jedi.el: https://github.com/tkf/emacs-jedi
|
.. _Jedi.el: https://github.com/tkf/emacs-jedi
|
||||||
.. _sublimejedi: https://github.com/svaiter/SublimeJEDI
|
.. _sublimejedi: https://github.com/srusskih/SublimeJEDI
|
||||||
.. _wdb: https://github.com/Kozea/wdb
|
.. _wdb: https://github.com/Kozea/wdb
|
||||||
|
|||||||
+1
-1
@@ -56,7 +56,7 @@ Emacs:
|
|||||||
|
|
||||||
Sublime Text 2/3:
|
Sublime Text 2/3:
|
||||||
|
|
||||||
- `SublimeJEDI <https://github.com/svaiter/SublimeJEDI>`_
|
- `SublimeJEDI <https://github.com/srusskih/SublimeJEDI>`_
|
||||||
|
|
||||||
|
|
||||||
.. _other-software:
|
.. _other-software:
|
||||||
|
|||||||
@@ -1,7 +1,11 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
|
|
||||||
from __future__ import with_statement
|
from __future__ import with_statement
|
||||||
from setuptools import setup
|
try:
|
||||||
|
from setuptools import setup
|
||||||
|
except ImportError:
|
||||||
|
# Distribute is not actually required to install
|
||||||
|
from distutils.core import setup
|
||||||
|
|
||||||
__AUTHOR__ = 'David Halter'
|
__AUTHOR__ = 'David Halter'
|
||||||
__AUTHOR_EMAIL__ = 'davidhalter88@gmail.com'
|
__AUTHOR_EMAIL__ = 'davidhalter88@gmail.com'
|
||||||
|
|||||||
@@ -112,7 +112,10 @@ class TestCase(object):
|
|||||||
if debugger:
|
if debugger:
|
||||||
einfo = sys.exc_info()
|
einfo = sys.exc_info()
|
||||||
pdb = __import__(debugger)
|
pdb = __import__(debugger)
|
||||||
pdb.post_mortem(einfo if debugger == 'pudb' else einfo[2])
|
if debugger == 'pudb':
|
||||||
|
pdb.post_mortem(einfo[2], einfo[0], einfo[1])
|
||||||
|
else:
|
||||||
|
pdb.post_mortem(einfo[2])
|
||||||
exit(1)
|
exit(1)
|
||||||
|
|
||||||
def show(self):
|
def show(self):
|
||||||
|
|||||||
Reference in New Issue
Block a user