summaryrefslogtreecommitdiff
path: root/documentation
Commit message (Collapse)AuthorAgeFilesLines
* Fix `UserDict` move in Python2 (#365)Bart Skowron2021-11-211-142/+142
| | | | instances of UserDict.UserDict are not iterable but instances of collections.UserDict are iterable
* Fix ensure_text docs. (#326)Andrzej Bartosiński2020-04-091-1/+1
| | | Co-authored-by: Benjamin Peterson <benjamin@python.org>
* Add assertNotRegex. (#289)Jonathan Vanasco2020-01-081-0/+5
| | | | | | Fixes #288. Co-authored-by: Benjamin Peterson <benjamin@python.org>
* Point _dummy_thread to _thread on Python 3.9.Benjamin Peterson2020-01-071-1/+2
| | | | Fixes #317.
* Fix wraps handing of missing attrs. (#251)immerrr again2020-01-061-3/+4
| | | | | | | | | This is pretty-much a straight backport of Py3 implementations of update_wrapper and (privately) wraps. Fixes #250 Fixes #165 Co-authored-by: Benjamin Peterson <benjamin@python.org>
* 10 years of six!Benjamin Peterson2020-01-061-1/+1
|
* Fix the reST roles of some modules.Benjamin Peterson2019-11-041-2/+2
|
* Add six.moves.collections_abc.Benjamin Peterson2019-11-041-0/+2
| | | | | Fixes #155. Closes #241.
* Add ndbm move. (#299)Ben Bariteau2019-11-041-0/+2
|
* Increment copyright year.Benjamin Peterson2019-06-181-1/+1
|
* Add missing "as". (#276)Jon Dufresne2019-02-021-1/+1
|
* minor formatting fix to ensure_str documentation (#273)Lee Ball2019-01-191-1/+1
| | | | Small update to the `ensure_str` function's documentation formatting to match `ensure_binary` and `ensure_text`'s formatting.
* Document that binary_type is only necessary for Python 2.5 compat (#270)Jon Dufresne2019-01-011-1/+3
| | | | | | | | | | | | As documented in the Python 2.6 release notes: https://docs.python.org/2/whatsnew/2.6.html#pep-3112-byte-literals > For future compatibility, Python 2.6 adds bytes as a synonym for the > str type ... To encourage more forward compatible code bases, inform users of this builtin alias. This addition is similar in spirit to the note for the b() function.
* docs: reload() is in importlib in current Python 3. (#266)cclauss2018-11-261-1/+1
| | | The docs say that the Python 2 builtin __reload()__ was moved into the __imp__ module (which _used_ to be true) but in all currently supported versions of CPython, __reload()__ is found in the __importlib__ module: https://docs.python.org/3/library/importlib.html#importlib.reload
* Be more precise about what six.class_types is. (#254)Jon Dufresne2018-09-111-2/+3
| | | Avoids the need for users to look this up by experimentation or code inspection.
* Update all pypi.python.org URLs to pypi.org (#238)Jon Dufresne2018-07-141-1/+1
| | | | | For details on the new PyPI, see the blog post: https://pythoninsider.blogspot.ca/2018/04/new-pypi-launched-legacy-pypi-shutting.html
* fix typo (#228)Jakub Wilk2018-02-261-1/+1
|
* documentation tweaksBenjamin Peterson2018-01-251-6/+6
|
* add ensure_binary/str/text helper functions (#204)Jingxin Zhu2018-01-251-0/+18
|
* bump copyright yearBenjamin Peterson2018-01-211-1/+1
|
* PyPi -> PyPI (#220)Mariatta2017-12-051-1/+1
|
* Add parse_http_list and parse_keqv_list to moved urllib.request (#203)Jason R. Coombs2017-09-161-0/+2
|
* remove moves.getstatusoutputBenjamin Peterson2017-08-271-2/+0
| | | | | Compatibility of Python getstatusoutput was broken in 3.3.4, so a simple renaming indirection doesn't suffice. See #207.
* Fix typo: intepreter -> interpreter (#206)delirious-lettuce2017-08-021-1/+1
|
* just use builtin next()Benjamin Peterson2017-06-281-1/+3
|
* Correct from "an" to "a". (#196)Shlomi Fish2017-05-041-1/+1
|
* Add unquote_to_bytes to moved urllib.parse. Fixes #171. (#172)Jason R. Coombs2017-03-011-1/+1
|
* Add moves for getoutput and getstatusoutput.Lucas Wiman2017-02-281-135/+139
|
* https for pypi urlBenjamin Peterson2017-01-021-1/+1
|
* bitbucket -> githubBenjamin Peterson2017-01-021-1/+1
|
* update copyright yearBenjamin Peterson2017-01-021-1/+1
|
* A small typing mistake on documentation/index.rstLilian Besson (Naereen)2016-11-261-2/+2
|
* Document adding splitvalue to urllib_parseAnthony Sottile2016-07-271-0/+1
|
* Drop duplicate b() in note about it and Python >= 2.6Ville Skyttä2016-06-121-1/+1
|
* Documentation spelling fixesVille Skyttä2016-06-081-2/+2
|
* Merged in asottile/six (pull request #75)Benjamin Peterson2016-04-191-2/+4
|\ | | | | | | Add six.moves.email_mime_image
| * Reorder six.moves.email_* (documentation)Anthony Sottile2016-04-181-4/+4
| |
| * s/mode/modAnthony Sottile2016-04-181-1/+1
| |
| * Document email_mime_imageAnthony Sottile2016-04-171-0/+2
| |
* | Rename class name to be consistent with the other examples.Brigitta Sipocz2016-04-131-1/+1
|/
* add 2016 to copyright yearsBenjamin Peterson2016-01-311-1/+1
|
* Clarify wording of u'' vs u() for Python 3Alex Willmer2015-08-211-1/+1
|
* documentation updates for issue #108Benjamin Peterson2015-03-201-0/+4
|
* doc tweaksBenjamin Peterson2015-03-201-3/+3
|
* Introduces a wrapper to create unbound methods.Bart van Merrienboer2015-01-211-0/+7
|
* Issue #112: six.moves.reload_module now uses importlib module on Python 3.4+.Berker Peksag2015-01-211-1/+3
|
* update copyright yearBenjamin Peterson2015-01-021-1/+1
|
* support the flush parameter of print_ (fixes #106)Benjamin Peterson2015-01-021-2/+3
|
* use decorator directive for add_metaclass and wrapsBenjamin Peterson2015-01-021-2/+2
|
* document python_2_unicode_compatibleBenjamin Peterson2015-01-021-0/+8
|