Skip to content

Commit 483de5a

Browse files
committed
Squashed 'tools/third_party/funcsigs/' changes from db7f0af..29e7a6ebb2
1b88d78a38 Release 1.0.2. a2602c812c Fix #21: setup_requires setuptools 17.1 3b0a393c27 Release 1.0.1. 6848ca897c Fixes #18: depend on ordereddict on old Pythons d967e51973 Version bump to 1.0.0. 9610297407 Merge pull request #17 from rbtcollins/mfield-varargs_class_method f2c0368f2e Deal with unbound methods like foo(*args). 3306968f41 Cleanup tests: e70929ceb2 Update README.rst fa0f64c06a Use the ordereddict pypi package when needed 7693e97193 Add .gitignore e7fb456d52 Merge pull request #6 from rbtcollins/github 43ee6b7b4e Fixup tox patch. 4e80d81554 Add tox.ini for tox 95ce8ebc49 README.rst: A few more tweaks 6cea81cced README.rst: Add detail to example d131c4af91 README.rst: compatability => compatibility 82d9c949d6 Avoid easy-install in travis. aa7288e532 Updates to fit into the new home. 32a9d3e37b Closes #14: Fix binding with self as a kwarg. git-subtree-dir: tools/third_party/funcsigs git-subtree-split: 29e7a6ebb21bf1c4dc9aca710d9fbfea08875849
1 parent 2e7047f commit 483de5a

15 files changed

Lines changed: 411 additions & 705 deletions

.gitignore

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
*~
2+
*.egg
3+
*.egg-info
4+
*.pyc
5+
*.pyo
6+
*.swp
7+
.DS_Store
8+
.coverage
9+
.tox/
10+
MANIFEST
11+
build/
12+
docs/.build/
13+
dist/
14+
env*/
15+
htmlcov/
16+
tmp/
17+
coverage.xml
18+
junit.xml
19+
.eggs/

.travis.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,17 @@ language: python
22
python:
33
- 2.6
44
- 2.7
5-
- 3.2
65
- 3.3
6+
- 3.4
7+
- 3.5
8+
- nightly
79
- pypy
10+
# - pypy3
811
install:
9-
- pip install -r requirements/development.txt -r requirements/production.txt
10-
- python setup.py install
12+
- pip install -U pip setuptools wheel
13+
- pip install -r requirements/development.txt .
1114
script:
1215
- coverage run setup.py test
1316
- coverage report --show-missing
1417
after_success:
1518
- coveralls
16-
notifications:
17-
email: aaron.iles+travis-ci@gmail.com

CHANGELOG

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

4+
0.5
5+
```
6+
7+
* Fix binding with self as a kwarg. (Robert Collins #14)
8+
49
0.4 (2013-12-20)
510
````````````````
611
* Fix unbound methods getting their first parameter curried

0 commit comments

Comments
 (0)