Skip to content

Commit

Permalink
Squashed 'tools/third_party/funcsigs/' changes from db7f0af..29e7a6ebb2
Browse files Browse the repository at this point in the history
1b88d78a38 Release 1.0.2.
a2602c812c Fix web-platform-tests#21: setup_requires setuptools 17.1
3b0a393c27 Release 1.0.1.
6848ca897c Fixes web-platform-tests#18: depend on ordereddict on old Pythons
d967e51973 Version bump to 1.0.0.
9610297407 Merge pull request web-platform-tests#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 web-platform-tests#14: Fix binding with self as a kwarg.

git-subtree-dir: tools/third_party/funcsigs
git-subtree-split: 29e7a6ebb21bf1c4dc9aca710d9fbfea08875849
  • Loading branch information
Hexcles committed Dec 15, 2020
1 parent 2e7047f commit 483de5a
Show file tree
Hide file tree
Showing 15 changed files with 411 additions and 705 deletions.
19 changes: 19 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
*~
*.egg
*.egg-info
*.pyc
*.pyo
*.swp
.DS_Store
.coverage
.tox/
MANIFEST
build/
docs/.build/
dist/
env*/
htmlcov/
tmp/
coverage.xml
junit.xml
.eggs/
11 changes: 6 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,17 @@ language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
- 3.5
- nightly
- pypy
# - pypy3
install:
- pip install -r requirements/development.txt -r requirements/production.txt
- python setup.py install
- pip install -U pip setuptools wheel
- pip install -r requirements/development.txt .
script:
- coverage run setup.py test
- coverage report --show-missing
after_success:
- coveralls
notifications:
email: aaron.iles+travis-ci@gmail.com
5 changes: 5 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changelog
---------

0.5
```

* Fix binding with self as a kwarg. (Robert Collins #14)

0.4 (2013-12-20)
````````````````
* Fix unbound methods getting their first parameter curried
Expand Down
Loading

0 comments on commit 483de5a

Please sign in to comment.