This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author loewis
Recipients loewis, serhiy.storchaka, zach.ware
Date 2014-08-05.15:32:18
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1407252738.08.0.751898318906.issue22136@psf.upfronthosting.co.za>
In-reply-to
Content
"const T" and "T const" are the same type. This compiles, and all variables have the same type:

int main()
{
  const volatile int a;
  const int volatile b;
  int const volatile c;
  volatile int const d;
  volatile int const etc;
}

Even "volatile short const int" and "long volatile long const int" work.
History
Date User Action Args
2014-08-05 15:32:18loewissetrecipients: + loewis, zach.ware, serhiy.storchaka
2014-08-05 15:32:18loewissetmessageid: <1407252738.08.0.751898318906.issue22136@psf.upfronthosting.co.za>
2014-08-05 15:32:18loewislinkissue22136 messages
2014-08-05 15:32:18loewiscreate