Where to contribute Unicode General Category encoding/decoding

2012-12-13 Thread Pander Musubi
Hi all, I have created some handy code to encode and decode Unicode General Categories. To which Python Package should I contribute this? Regards, Pander -- http://mail.python.org/mailman/listinfo/python-list

Re: Where to contribute Unicode General Category encoding/decoding

2012-12-13 Thread Pander Musubi
On Thursday, December 13, 2012 2:22:57 PM UTC+1, Bruno Dupuis wrote: > On Thu, Dec 13, 2012 at 01:51:00AM -0800, Pander Musubi wrote: > > > Hi all, > > > > > > I have created some handy code to encode and decode Unicode General > > Categories. To which Pyt

Re: Where to contribute Unicode General Category encoding/decoding

2012-12-14 Thread Pander Musubi
On Friday, December 14, 2012 1:06:23 AM UTC+1, Steven D'Aprano wrote: > On Thu, 13 Dec 2012 07:30:57 -0800, Pander Musubi wrote: > > > > > I was expecting PyPI. Here is the code, please advise on where to submit > > > it: > > > http://pastebin.com/

Re: Where to contribute Unicode General Category encoding/decoding

2012-12-14 Thread Pander Musubi
On Friday, December 14, 2012 2:07:51 PM UTC+1, Pander Musubi wrote: > On Friday, December 14, 2012 1:06:23 AM UTC+1, Steven D'Aprano wrote: > > > On Thu, 13 Dec 2012 07:30:57 -0800, Pander Musubi wrote: > > > > > > > > > > > > >

Re: Where to contribute Unicode General Category encoding/decoding

2012-12-14 Thread Pander Musubi
On Friday, December 14, 2012 5:22:31 PM UTC+1, Pander Musubi wrote: > On Friday, December 14, 2012 2:07:51 PM UTC+1, Pander Musubi wrote: > > > On Friday, December 14, 2012 1:06:23 AM UTC+1, Steven D'Aprano wrote: > > > > > > > On Thu, 13 Dec 20

Custom alphabetical sort

2012-12-24 Thread Pander Musubi
Hi all, I would like to sort according to this order: (' ', '.', '\'', '-', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'A', 'ä', 'Ä', 'á', 'Á', 'â', 'Â', 'à', 'À', 'å', 'Å', 'b', 'B', 'c', 'C', 'ç', 'Ç', 'd', 'D', 'e', 'E', 'ë', 'Ë', 'é', 'É', 'ê', 'Ê', 'è', 'È', 'f', 'F', 'g', 'G'

Re: Custom alphabetical sort

2012-12-24 Thread Pander Musubi
On Monday, December 24, 2012 5:11:03 PM UTC+1, Thomas Bach wrote: > On Mon, Dec 24, 2012 at 07:32:56AM -0800, Pander Musubi wrote: > > > I would like to sort according to this order: > > > > > > (' ', '.', '\'', '-', &#

Re: Custom alphabetical sort

2012-12-24 Thread Pander Musubi
> > Hi all, > > > > > > I would like to sort according to this order: > > > > > > (' ', '.', '\'', '-', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', > > > 'A', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', 'b', 'B', 'c', 'C', > > > '?', '?', 'd', 'D', 'e', 'E', '?', '?', '?', '?

Re: Custom alphabetical sort

2012-12-24 Thread Pander Musubi
> > > > > > I'm assuming that doesn't correspond to some standard locale's collating > > > > order, so we really do need to roll our own encoding (and that you have > > > > a good reason for wanting to do this). > > > > > > It is for creating a Dutch dictionary. > > > > Wait a minute.

Re: Custom alphabetical sort

2012-12-24 Thread Pander Musubi
On Monday, December 24, 2012 7:12:43 PM UTC+1, Joshua Landau wrote: > On 24 December 2012 16:18, Roy Smith wrote: > > > > > In article <40d108ec-b019-4829-a969-c8ef51386...@googlegroups.com>, > >  Pander Musubi wrote: > > > > > Hi all, >

Re: Custom alphabetical sort

2015-05-02 Thread Pander Musubi
On Monday, 24 December 2012 16:32:56 UTC+1, Pander Musubi wrote: > Hi all, > > I would like to sort according to this order: > > (' ', '.', '\'', '-', '0', '1', '2', '3', '4', '5&