Wed Nov 9 07:56:56 2022 UTC ()
py-colorama: revert DESCR


(adam)
diff -r1.2 -r1.3 pkgsrc/comms/py-colorama/DESCR

cvs diff -r1.2 -r1.3 pkgsrc/comms/py-colorama/DESCR (expand / switch to unified diff)

--- pkgsrc/comms/py-colorama/DESCR 2022/11/09 07:55:44 1.2
+++ pkgsrc/comms/py-colorama/DESCR 2022/11/09 07:56:56 1.3
@@ -1,3 +1,13 @@ @@ -1,3 +1,13 @@
1Blessed is an easy, practical library for making terminal apps, by providing an 1Makes ANSI escape character sequences for producing colored terminal text and
2elegant, well-documented interface to Colors, Keyboard input, and screen 2cursor positioning work under MS Windows.
3position and Location capabilities. 3
 4ANSI escape character sequences have long been used to produce colored terminal
 5text and cursor positioning on Unix and Macs. Colorama makes this work on
 6Windows, too, by wrapping stdout, stripping ANSI sequences it finds (which
 7otherwise show up as gobbledygook in your output), and converting them into the
 8appropriate win32 calls to modify the state of the terminal. On other platforms,
 9Colorama does nothing.
 10
 11Colorama also provides some shortcuts to help generate ANSI sequences but works
 12fine in conjunction with any other ANSI sequence generation library, such as
 13Termcolor.