Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | add 2016 to copyright years | Benjamin Peterson | 2016-01-31 | 1 | -1/+1 |
| | |||||
* | add License goop to all python files (fixes #137) | Benjamin Peterson | 2015-10-20 | 1 | -0/+20 |
| | |||||
* | improve performance of int2byte on python 3 (fixes #122) | Benjamin Peterson | 2015-03-21 | 1 | -1/+1 |
| | |||||
* | Merged in bartvm/six/create_unbound_method (pull request #64) | Benjamin Peterson | 2015-03-20 | 1 | -0/+14 |
|\ | | | | | | | Introduces a wrapper to create unbound methods. | ||||
| * | Added testscreate_unbound_method | Bart van Merrienboer | 2015-01-21 | 1 | -0/+14 |
| | | |||||
* | | Specify skipif condition as strings | derekhiggins | 2015-03-19 | 1 | -1/+1 |
| | | | | | | | | Specifying all conditions as strings is more consistent and will allow tests to pass on pytest < 2.4. | ||||
* | | fix tests on Python 3.1 (fixes #113) | Benjamin Peterson | 2015-01-22 | 1 | -1/+1 |
|/ | | | | Patch by Arfrever Frehtes Taifersar Arahesis. | ||||
* | support the flush parameter of print_ (fixes #106) | Benjamin Peterson | 2015-01-02 | 1 | -0/+11 |
| | |||||
* | assertRegex and assertRaisesRegex are 2.7+ only, too | Benjamin Peterson | 2015-01-02 | 1 | -0/+2 |
| | |||||
* | Merged in graingert/six (pull request #48) | Benjamin Peterson | 2015-01-02 | 1 | -0/+88 |
|\ | |||||
| * | Merged in timograham/six (pull request #57) | Benjamin Peterson | 2015-01-02 | 1 | -0/+12 |
| |\ | | | | | | | | | | Added unittest aliases. | ||||
| | * | add test for issue #105 | Benjamin Peterson | 2014-12-09 | 1 | -0/+12 |
| | | | |||||
| * | | Added unittest aliases. | Tim Graham | 2014-11-25 | 1 | -0/+37 |
| |/ | |||||
| * | add raise_from (fixes #102) | Benjamin Peterson | 2014-10-29 | 1 | -0/+21 |
| | | | | | | | | Patch from Robert Collins. | ||||
| * | It's skipIf, not skipif | Brett Cannon | 2014-10-10 | 1 | -2/+2 |
| | | |||||
| * | Drop kwargs tests for view* | Brett Cannon | 2014-10-10 | 1 | -15/+2 |
| | | |||||
| * | Address PR comments | Brett Cannon | 2014-10-05 | 1 | -14/+16 |
| | | |||||
| * | Introduce viewkeys(), viewvalues(), and viewitems(). | Brett Cannon | 2014-10-03 | 1 | -0/+29 |
| | | | | | | | | Closes issue #92 | ||||
* | | add tests for python_2_unicode_comapatible | Thomas Grainger | 2014-09-16 | 1 | -0/+21 |
|/ | |||||
* | fix add_metaclass when there is a __weakref__ or __dict__ slot (closes #88) | Benjamin Peterson | 2014-08-17 | 1 | -0/+4 |
| | |||||
* | instantiate the exception if the value is None (fixes #86) | Benjamin Peterson | 2014-08-02 | 1 | -0/+8 |
| | |||||
* | Merged in harlowja/six (pull request #32) | Benjamin Peterson | 2014-04-30 | 1 | -0/+1 |
|\ | | | | | | | Add a wraps helper | ||||
| * | Test to ensure that with_metaclass() does not insert any intermediary bases | Ben Davis | 2014-04-26 | 1 | -0/+1 |
| | | |||||
* | | Add a test for wraps | Joshua Harlow | 2014-04-28 | 1 | -0/+18 |
|/ | |||||
* | Stop referencing deleted private attrs in test_dictionary_iterators. | Erik Rose | 2014-03-19 | 1 | -3/+12 |
| | |||||
* | raise an AttributeError for six.moves.X when X is a module not available in ↵ | Benjamin Peterson | 2014-03-13 | 1 | -1/+2 |
| | | | | | | the current interpreter As discussed in https://github.com/pypa/pip/issues/1643. | ||||
* | correct version check (fixes #52) | Benjamin Peterson | 2014-01-05 | 1 | -1/+1 |
| | |||||
* | fix test on Python 3 | Benjamin Peterson | 2014-01-04 | 1 | -2/+2 |
| | |||||
* | consolidate and rename tests | Benjamin Peterson | 2014-01-04 | 1 | -4/+1 |
| | |||||
* | Merge upstream default into issue_19 | Marc Abramowitz | 2014-01-04 | 1 | -12/+66 |
|\ | |||||
| * | Merged in alexanderlukanin13/six/urllib_import_weirdness (pull request #22) | Benjamin Peterson | 2014-01-04 | 1 | -12/+46 |
| |\ | | | | | | | | | | moves import bug fixed | ||||
| | * | add mapping for ttk (fixes #49) | Benjamin Peterson | 2014-01-04 | 1 | -2/+5 |
| | | | |||||
| | * | test_six.py: test_MAXSIZE allow ValueError or OverflowError | Marc Abramowitz | 2013-12-26 | 1 | -5/+3 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | because the previous code was expecting ValueError on Python 2.4, but I was getting OverflowError on Python 2.4.4 on OS X but ValueError on Python 2.4.6 on Ubuntu. So perhaps knowing which exception will be raised is not that straightforward, so I made it check for either one. | ||||
| | * | Merged in msabramo/six/dont_fail_tests_if_dont_have_gdbm (pull request #25) | Benjamin Peterson | 2013-12-25 | 1 | -5/+27 |
| | |\ | | | | | | | | | | | | | Don't fail test if gdbm is not available | ||||
| | | * | Merged in msabramo/six/issue_34_2 (pull request #24) | Benjamin Peterson | 2013-12-25 | 1 | -0/+11 |
| | | |\ | | | | | | | | | | | | | | | | Make dir() on six.moves modules return all attributes, despite lazy loading | ||||
| | | | * | test_six.py: Don't check dir on python < 2.6 | Marc Abramowitz | 2013-12-25 | 1 | -5/+10 |
| | | | | | | | | | | | | | | | | | | | | because pythons < 2.6 did not have __dir__ method | ||||
| | | | * | Test that dir() returns attributes, despite lazy loading | Marc Abramowitz | 2013-12-09 | 1 | -0/+6 |
| | | | | | |||||
| | | * | | fix add_metaclass when __slots__ is a string (fixes #47) | Benjamin Peterson | 2013-12-20 | 1 | -0/+11 |
| | | | | | |||||
| | | * | | adjust comment | Benjamin Peterson | 2013-12-20 | 1 | -1/+1 |
| | | | | | |||||
| | | * | | six.u 4-byte unicode escaping fixed ('\U00000439') | alexanderlukanin13 | 2013-11-27 | 1 | -4/+4 |
| | | | | | |||||
| | | * | | fixed six.u('\\\\') in Python 2 | alexanderlukanin13 | 2013-11-07 | 1 | -4/+4 |
| | | |/ | |||||
| | * | | Don't fail test if gdbm is not available | Marc Abramowitz | 2013-12-25 | 1 | -0/+11 |
| | |/ | |||||
| * | | moves import bug fixed | alexanderlukanin13 | 2013-11-07 | 1 | -0/+20 |
| |/ | |||||
* | | Add tests for `from six.moves.queue import Queue` and `from | Marc Abramowitz | 2013-12-08 | 1 | -0/+10 |
| | | | | | | | | six.moves.configparser import ConfigParser` | ||||
* | | Merge from tip to issue_19 | Marc Abramowitz | 2013-12-08 | 1 | -0/+18 |
|\ \ | |/ | |||||
| * | fix grammar | Benjamin Peterson | 2013-09-08 | 1 | -1/+1 |
| | | |||||
| * | use builtin print function when possible | Benjamin Peterson | 2013-09-08 | 1 | -1/+1 |
| | | |||||
| * | print_: encode unicode with file encoding and errors on Python 2 (fixes #35) | Benjamin Peterson | 2013-09-08 | 1 | -0/+18 |
| | | |||||
* | | Put six.moves modules in sys.modules so that they're importable (fixes | Marc Abramowitz | 2013-09-07 | 1 | -1/+3 |
|/ | | | | #19) | ||||
* | skip tests for things not in 2.4/2.5 | Benjamin Peterson | 2013-09-01 | 1 | -0/+8 |
| |