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 sbt
Recipients pitrou, sbt, vstinner
Date 2012-02-23.11:15:15
SpamBayes Score 7.853846e-07
Marked as misclassified No
Message-id <1329995716.03.0.983489163333.issue14095@psf.upfronthosting.co.za>
In-reply-to
Content
I get a segfault with

  Python 3.3.0a0 (default:31784350f849, Feb 23 2012, 11:07:41)
  [GCC 4.5.2] on linux
  Type "help", "copyright", "credits" or "license" for more information.
  >>> d = {'__qualname__':'XXX'}
  >>> T = type('foo', (), d)
  >>> d
  Segmentation fault

On Windows I also get a crash.  Wierdly, if I replace 'XXX' by 'foo', 
there is no segfault, but d is empty

  Python 3.3.0a0 (default:31784350f849, Feb 23 2012, 11:07:41)
  [GCC 4.5.2] on linux
  Type "help", "copyright", "credits" or "license" for more information.
  >>> d = {'__qualname__':'foo'}
  >>> T = type('foo', (), d)
  >>> d
  {}
History
Date User Action Args
2012-02-23 11:15:16sbtsetrecipients: + sbt, pitrou, vstinner
2012-02-23 11:15:16sbtsetmessageid: <1329995716.03.0.983489163333.issue14095@psf.upfronthosting.co.za>
2012-02-23 11:15:15sbtlinkissue14095 messages
2012-02-23 11:15:15sbtcreate