- 28 Tem, 2013 1 kayıt (commit)
-
-
Nick Coghlan yazdı
Initial patch by Daniel Urban and Aaron Iles
-
- 04 Tem, 2013 1 kayıt (commit)
-
-
Brett Cannon yazdı
-
- 16 Haz, 2013 1 kayıt (commit)
-
-
Brett Cannon yazdı
To make sure there is no issue with code that is both Python 2 and 3 compatible, there are no plans to remove the module any sooner than Python 4 (unless the community moves to Python 3 solidly before then).
-
- 14 Haz, 2013 1 kayıt (commit)
-
-
Brett Cannon yazdı
ModuleNotFoundError.
-
- 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.
-
- 30 Mar, 2013 2 kayıt (commit)
-
-
Ezio Melotti yazdı
#17526: fix an IndexError raised while passing code without filename to inspect.findsource(). Initial patch by Tyler Doyle.
-
Ezio Melotti yazdı
#17526: fix an IndexError raised while passing code without filename to inspect.findsource(). Initial patch by Tyler Doyle.
-
- 29 Ock, 2013 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
- 25 Ara, 2012 1 kayıt (commit)
-
-
Andrew Svetlov yazdı
-
- 20 Tem, 2012 1 kayıt (commit)
-
-
Meador Inge yazdı
-
- 18 Tem, 2012 1 kayıt (commit)
-
-
Nick Coghlan yazdı
Close #15387: inspect.getmodulename() now uses a new importlib.machinery.all_suffixes() API rather than the deprecated inspect.getmoduleinfo()
-
- 23 Haz, 2012 2 kayıt (commit)
-
-
Nick Coghlan yazdı
Close #15153: Added inspect.getgeneratorlocals to simplify whitebox testing of generator state updates
-
Nick Coghlan yazdı
-
- 22 Haz, 2012 1 kayıt (commit)
-
-
Larry Hastings yazdı
Patch by Yury Selivanov.
-
- 03 Haz, 2012 1 kayıt (commit)
-
-
Brett Cannon yazdı
-
- 11 May, 2012 1 kayıt (commit)
-
-
Brett Cannon yazdı
importlib.machinery that provide the suffix details for import. The attributes were not put on imp so as to compartmentalize everything importlib needs for setting up imports in importlib.machinery. This also led to an indirect deprecation of inspect.getmoduleinfo() as it directly returned imp.get_suffix's returned tuple which no longer makes sense.
-
- 18 Ock, 2012 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
Python 3 isn't affected (unbound methods don't exist). Thanks to Vincent Pelletier for noticing.
-
- 22 Ara, 2011 1 kayıt (commit)
-
-
Michael Foord yazdı
Metaclasses with metaclasses with a __dict__ descriptor can no longer trigger code execution with inspect.getattr_static. Closes issue 11829.
-
- 21 Ara, 2011 2 kayıt (commit)
-
-
Antoine Pitrou yazdı
Also fixes issue #13581: `help(type)` wouldn't display anything.
-
Antoine Pitrou yazdı
Also fixes issue #13581: `help(type)` wouldn't display anything.
-
- 18 Ara, 2011 1 kayıt (commit)
-
-
Michael Foord yazdı
Closes issue 11813.
-
- 29 Kas, 2011 1 kayıt (commit)
-
-
Éric Araujo yazdı
This fixes a regression compared to 2.x, where sys.modules.items() returns a copy, as indicated by a comment in the source. Diagnosis and patch by Erik Tollerud.
-
- 28 Haz, 2011 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
A patch from Vincent Legoll.
-
- 24 Haz, 2011 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 11 Haz, 2011 2 kayıt (commit)
-
-
Benjamin Peterson yazdı
This allows findsource() to work in doctests. A patch from Dirkjan Ochtman.
-
Benjamin Peterson yazdı
This allows findsource() to work in doctests. A patch from Dirkjan Ochtman.
-
- 06 Haz, 2011 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 28 Mar, 2011 2 kayıt (commit)
-
-
Benjamin Peterson yazdı
A patch from Daniel Urban.
-
Benjamin Peterson yazdı
A patch from Daniel Urban.
-
- 15 Mar, 2011 1 kayıt (commit)
-
-
Michael Foord yazdı
-
- 30 Kas, 2010 1 kayıt (commit)
-
-
Nick Coghlan yazdı
Issue 10220: switch to using string constants rather than integers for inspect.getgeneratorstate() return values and make debugging friendly str() and repr() for generator states a requirement in the test suite
-
- 26 Kas, 2010 1 kayıt (commit)
-
-
Georg Brandl yazdı
svn+ssh://svn.python.org/python/branches/py3k ........ r85530 | georg.brandl | 2010-10-15 17:32:05 +0200 (Fr, 15 Okt 2010) | 1 line Refrain from using inline suites. ........ r85532 | georg.brandl | 2010-10-15 18:03:02 +0200 (Fr, 15 Okt 2010) | 1 line #7771: reference to documentation of dictview methods and operations. ........ r85533 | georg.brandl | 2010-10-15 18:07:41 +0200 (Fr, 15 Okt 2010) | 1 line #9683: remove broken dead code dealing with nested arguments removed from Py3k, and update the docs and docstrings accordingly. ........ r85534 | georg.brandl | 2010-10-15 18:19:43 +0200 (Fr, 15 Okt 2010) | 1 line #9801: document how list and dict proxies created by Managers behave w.r.t. mutable items. ........ r85538 | georg.brandl | 2010-10-15 18:35:46 +0200 (Fr, 15 Okt 2010) | 1 line #7303: add documentation for useful pkgutil functions and classes. ........ r85539 | georg.brandl | 2010-10-15 18:42:14 +0200 (Fr, 15 Okt 2010) | 1 line Fix issue references. ........ r85540 | georg.brandl | 2010-10-15 18:42:37 +0200 (Fr, 15 Okt 2010) | 1 line #6798: fix wrong docs for the arguments to several trace events. ........ r85541 | georg.brandl | 2010-10-15 18:53:24 +0200 (Fr, 15 Okt 2010) | 1 line #4968: updates to inspect.is* function docs. ........ r85542 | georg.brandl | 2010-10-15 19:01:15 +0200 (Fr, 15 Okt 2010) | 1 line #7790: move table of struct_time members to the actual description of struct_time. ........ r85543 | georg.brandl | 2010-10-15 19:03:02 +0200 (Fr, 15 Okt 2010) | 1 line #4785: document strict argument of JSONDecoder, plus add object_pairs_hook in the docstrings. ........ r85546 | georg.brandl | 2010-10-15 19:58:45 +0200 (Fr, 15 Okt 2010) | 1 line #5762: fix handling of empty namespace in minidom, which would result in AttributeError on toxml(). ........ r85547 | georg.brandl | 2010-10-15 20:00:35 +0200 (Fr, 15 Okt 2010) | 1 line #6098: Refrain from claiming DOM level 3 conformance in minidom. ........ r85548 | georg.brandl | 2010-10-15 21:46:19 +0200 (Fr, 15 Okt 2010) | 1 line #10072: assume a bit less knowledge of the FTP protocol in the ftplib docs. ........
-
- 21 Kas, 2010 1 kayıt (commit)
-
-
Nick Coghlan yazdı
-
- 20 Kas, 2010 4 kayıt (commit)
-
-
Michael Foord yazdı
-
Michael Foord yazdı
-
Michael Foord yazdı
Issue 9732: remove use of __class__ in inspect.getattr_static and note the mro exception to code execution
-
Michael Foord yazdı
-
- 04 Kas, 2010 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 15 Eki, 2010 2 kayıt (commit)
-
-
Alexander Belopolsky yazdı
importing encoded modules that do not depend on specific stdlib modules being encoded in a certain way.
-
Georg Brandl yazdı
#9683: remove broken dead code dealing with nested arguments removed from Py3k, and update the docs and docstrings accordingly.
-