Message190322
| Author | mrabarnett |
|---|---|
| Recipients | BreamoreBoy, ezio.melotti, l0nwlf, lemburg, loewis, mrabarnett, nathanlmiles, rsc, terry.reedy, timehorse, vstinner |
| Date | 2013-05-29.17:31:08 |
| SpamBayes Score | -1.0 |
| Marked as misclassified | Yes |
| Message-id | <1369848668.92.0.290271196311.issue1693050@psf.upfronthosting.co.za> |
| In-reply-to |
| Content | |
|---|---|
You could've obtained it from msg76556 or msg190100: >>> print(ascii('हिन्दी')) '\u0939\u093f\u0928\u094d\u0926\u0940' >>> import re, regex >>> print(ascii(re.match(r"\w+", '\u0939\u093f\u0928\u094d\u0926\u0940').group())) '\u0939' >>> print(ascii(regex.match(r"\w+", '\u0939\u093f\u0928\u094d\u0926\u0940').group())) '\u0939\u093f\u0928\u094d\u0926\u0940' |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2013-05-29 17:31:08 | mrabarnett | set | recipients: + mrabarnett, lemburg, loewis, terry.reedy, vstinner, nathanlmiles, rsc, timehorse, ezio.melotti, l0nwlf, BreamoreBoy |
| 2013-05-29 17:31:08 | mrabarnett | set | messageid: <1369848668.92.0.290271196311.issue1693050@psf.upfronthosting.co.za> |
| 2013-05-29 17:31:08 | mrabarnett | link | issue1693050 messages |
| 2013-05-29 17:31:08 | mrabarnett | create | |