[issue10297] decimal module documentation is misguiding

2010-11-04 Thread Baiju M

Changes by Baiju M baiju.m.m...@gmail.com:


--
nosy: +baijum

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10297
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue7894] too aggressive dependency tracking in distutils

2010-08-05 Thread Baiju M

Changes by Baiju M baiju.m.m...@gmail.com:


--
components: +Distutils2

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue7894
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue5358] Unicode control characters are not allowed as identifiers

2009-02-26 Thread Baiju M

Baiju M baiju.m.m...@gmail.com added the comment:

On a further look at this issue, I understood Python cannot use all
Unicode control characters as identifiers.  But for many international
languages, without some control characters like ZWJ  ZWNJ [1], it won't
be possible to construct all characters with proper visual
representation.  So, if Python really want to support international
characters as identifiers (for some reason), ZWJ  ZWNJ are unavoidable,
may be some other characters also.

 [1] http://en.wikipedia.org/wiki/Zero-width_joiner
 http://en.wikipedia.org/wiki/Zero-width_non-joiner

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue5358
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue5358] Unicode control characters are not allowed as identifiers

2009-02-26 Thread Baiju M

Baiju M baiju.m.m...@gmail.com added the comment:

I think RFC-3454 [1] can be used as a base for selecting the control
characters which can be used as a valid identifier character.

 [1] http://www.rfc-editor.org/rfc/rfc3454.txt

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue5358
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue5358] Unicode control characters are not allowed as identifiers

2009-02-24 Thread Baiju M

New submission from Baiju M baiju.m.m...@gmail.com:

I tried to use Zero-width joiner (U+200D) as part of an identifier.
It produce an exception like this:

SyntaxError: invalid character in identifier

I have attached the Python file which produce this error.

Zero-width joiner (U+200D) is a Unicode control character:
http://en.wikipedia.org/wiki/Unicode_control_characters

--
components: Unicode
files: identifier.py
messages: 82664
nosy: baijum
severity: normal
status: open
title: Unicode control characters are not allowed as identifiers
type: behavior
versions: Python 3.0, Python 3.1
Added file: http://bugs.python.org/file13162/identifier.py

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue5358
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com