- 30 Tem, 2013 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
- 04 May, 2013 1 kayıt (commit)
-
-
Brett Cannon yazdı
attributes to None. The long-term goal is for people to be able to rely on these attributes existing and checking for None to see if they have been set. Since import itself sets these attributes when a loader does not the only instances when the attributes are None are from someone overloading __import__() and not using a loader or someone creating a module from scratch. This patch also unifies module initialization. Before you could have different attributes with default values depending on how the module object was created. Now the only way to not get the same default set of attributes is to circumvent initialization by calling ModuleType.__new__() directly.
-
- 13 Nis, 2013 3 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Mark Dickinson yazdı
-
- 31 Eki, 2012 2 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
- 01 May, 2012 2 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
- 24 Nis, 2012 2 kayıt (commit)
-
-
Benjamin Peterson yazdı
This also alters the fix to #11603. Specifically, setting __repr__ to object.__str__ now raises a recursion RuntimeError when str() or repr() is called instead of silently bypassing the recursion. I believe this behavior is more correct.
-
Benjamin Peterson yazdı
This also alters the fix to #11603. Specifically, setting __repr__ to object.__str__ now raises a recursion RuntimeError when str() or repr() is called instead of silently bypassing the recursion. I believe this behavior is more correct.
-
- 15 Nis, 2012 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 21 Mar, 2012 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 17 Mar, 2012 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 16 Mar, 2012 2 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
- 08 Mar, 2012 2 kayıt (commit)
-
-
Victor Stinner yazdı
the type MRO to avoid a crash if the MRO is changed during the lookup.
-
Benjamin Peterson yazdı
Patch from Armin, test from me.
-
- 25 Şub, 2012 1 kayıt (commit)
-
-
Victor Stinner yazdı
dict anymore if the key is present. Reject also non-string qualified names. And fix reference leaks in type.__new__().
-
- 20 Şub, 2012 2 kayıt (commit)
-
-
Georg Brandl yazdı
-
Georg Brandl yazdı
in order to make algorithmic complexity attacks on (e.g.) web apps much more complicated. The environment variable PYTHONHASHSEED and the new command line flag -R control this behavior.
-
- 19 Şub, 2012 2 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
- 08 Mar, 2012 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
Patch from Armin, test from me.
-
- 12 Ara, 2011 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
Patch by sbt.
-
- 25 Kas, 2011 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
- 23 Eki, 2011 1 kayıt (commit)
-
-
Nick Coghlan yazdı
Issue 1294232: Fix errors in metaclass calculation affecting some cases of metaclass inheritance. Patch by Daniel Urban.
-
- 17 Agu, 2011 2 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
- 16 Agu, 2011 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 28 Tem, 2011 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
- 15 Tem, 2011 2 kayıt (commit)
-
-
Antoine Pitrou yazdı
Patch by Andreas Stührk.
-
Antoine Pitrou yazdı
Patch by Andreas Stührk.
-
- 29 Haz, 2011 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
- 25 May, 2011 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 23 May, 2011 2 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
- 01 May, 2011 2 kayıt (commit)
-
-
Victor Stinner yazdı
descriptor, the check of the object type doesn't read the __class__ attribute anymore. Fix a crash if a class override its __class__ attribute (e.g. a proxy of the str type).
-
Victor Stinner yazdı
check of the object type doesn't read the __class__ attribute anymore. Fix a crash if a class override its __class__ attribute (e.g. a proxy of the str type).
-
- 16 Mar, 2011 1 kayıt (commit)
-
-
Ezio Melotti yazdı
-