-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
24 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,12 @@ | ||
unicode (2.6) unstable; urgency=low | ||
|
||
* fix crash when using Uxxxx (as opposed to U+xxxx) (closes: #836594) | ||
* improve message when there are too many characters | ||
to display (closes: #868490) | ||
* python3 by default (closes: #874672) | ||
|
||
-- Radovan Garabík <[email protected]> Mon, 09 Apr 2018 16:41:29 +0200 | ||
|
||
unicode (2.5) unstable; urgency=low | ||
|
||
* do not display control characters in tabular output | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
5 | ||
9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,12 +2,12 @@ Source: unicode | |
Section: utils | ||
Priority: optional | ||
Maintainer: Radovan Garabík <[email protected]> | ||
Build-Depends: debhelper (>= 4), python (>= 2.6) | ||
Standards-Version: 3.9.4 | ||
Build-Depends: debhelper (>= 4), dh-python | ||
Standards-Version: 3.9.6 | ||
|
||
Package: unicode | ||
Architecture: all | ||
Depends: ${misc:Depends}, ${python:Depends} | ||
Depends: ${misc:Depends}, ${python3:Depends} | ||
Recommends: unicode-data | ||
Description: display unicode character properties | ||
unicode is a simple command line utility that displays | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/python | ||
#!/usr/bin/python3 | ||
|
||
import sys, unicodedata | ||
from optparse import OptionParser | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
[bdist_wheel] | ||
universal = 1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters