Case sensitivity/insensitivity

James Logajan JamesL at Lugoj.Com
Sat May 20 21:38:40 EDT 2000


Courageous asked:
> Does anyone out there actually make use of
> case sensitivity?

Yes.

I use it more now than I used to after I worked with ASN.1 for a while. In
that notation types are mandated to start with upper case characters and
field identifiers are mandated to start with lowercase characters. So in
C/C++ I now feel vindicated in doing something like:

struct Person
   {
      char *name;
      int  age;
   };

void Fenestrate(Person &person);



More information about the Python-list mailing list