Upstream changes:
1.300031 2017-04-04 14:35:42-04:00 America/New_York
- EMAIL_SENDER_TRANSPORT did not properly handle the =-prefix case
Now: =Foo::Bar expands to Foo::Bar, Foo::Bar expands to Foo::Bar,
and FooBar expands to Email::Sender::Transport::FooBar, as intended.
Previously, =Foo::Bar expanded to Email::Sender::Transport::Foo::Bar
A flake8 and Pylama plugin that checks the ordering of your imports.
In general stdlib comes first, then 3rd party, then local packages,
and that each group is individually alphabetized.
It will not check anything else about the imports. Merely that they
are grouped and ordered correctly.
0.3.7
* Fix issue #84: check if stream has 'closed' attribute before testing it
* Fix issue #74: objects might become None at exit
0.3.6
* Fix issue #81: fix ValueError when a closed stream was used
0.3.5
* Bumping version to re-upload a wheel distribution
0.3.4
* Fix issue #47 and #80 - stream redirection now strips ANSI codes on Linux
* Fix issue #53 - strip readline markers
* Fix issue #32 - assign orig_stdout and orig_stderr when initialising
* Fix issue #57 - Fore.RESET did not reset style of LIGHT_EX colors.
Fixed by Andy Neff
* Fix issue #51 - add context manager syntax. Thanks to Matt Olsen.
* Fix issue #48 - colorama didn't work on Windows when environment
variable 'TERM' was set.
* Fix issue #54 - fix pylint errors in client code.
* Changes to readme and other improvements by Marc Abramowitz and Zearin
0.3.3
* Fix Google Code issue #13 - support changing the console title with OSC
escape sequence
* Fix Google Code issue #16 - Add support for Windows xterm emulators
* Fix Google Code issue #30 - implement \033[nK (clear line)
* Fix Google Code issue #49 - no need to adjust for scroll when new position
is already relative (CSI n A\B\C\D)
* Fix Google Code issue #55 - erase_data fails on Python 3.x
* Fix Google Code issue #46 - win32.COORD definition missing
* Implement \033[0J and \033[1J (clear screen options)
* Fix default ANSI parameters
* Fix position after \033[2J (clear screen)
* Add command shortcuts: colorama.Cursor, colorama.ansi.set_title,
colorama.ansi.clear_line, colorama.ansi.clear_screen
* Fix issue #22 - Importing fails for python3 on Windows
* Thanks to John Szakmeister for adding support for light colors
* Thanks to Charles Merriam for adding documentation to demos
This plugin installs a mocker fixture which is a thin-wrapper around
the patching API provided by the mock package, but with the benefit
of not having to worry about undoing patches at the end of a test.
Based on wip/py-mando by
Kamel Ibn Aziz Derouiche <kamel.derouiche@gmail.com>.
mando is a wrapper around argparse, and allows you to write complete
CLI applications in seconds while maintaining all the flexibility.
Based on wip/py-paramunittest by
Kamel Ibn Aziz Derouiche <kamel.derouiche@gmail.com>.
This package allows to create parametrized unit-tests that work
with the standard unittest package. A parametrized test case is
automatically converted to multiple test cases. Since they are
TestCase subclasses, they work with other test suites that recognize
TestCases.