Re: [Python-Dev] limited_api and datetime

2017-08-23 Thread Christian Tismer
Hi Nick, On 23.08.17 07:41, Nick Coghlan wrote: > On 23 August 2017 at 00:09, stackless wrote: >> Hi again, >> >> I am trying to support the limited Api (PEP 384) for PySide. Fortunately, >> everything worked out of the box, just the datetime module gives me >> a problem.

Re: [Python-Dev] limited_api and datetime

2017-08-22 Thread Nick Coghlan
On 23 August 2017 at 00:09, stackless wrote: > Hi again, > > I am trying to support the limited Api (PEP 384) for PySide. Fortunately, > everything worked out of the box, just the datetime module gives me > a problem. Inspection showed that datetime is completely removed >

[Python-Dev] limited_api and datetime

2017-08-22 Thread stackless
Hi again, I am trying to support the limited Api (PEP 384) for PySide. Fortunately, everything worked out of the box, just the datetime module gives me a problem. Inspection showed that datetime is completely removed when the limitation is set. Can somebody enlighten me why that needs to be