- 17 Eyl, 2014 1 kayıt (commit)
-
-
Senthil Kumaran yazdı
-
- 10 Tem, 2014 1 kayıt (commit)
-
-
Zachary Ware yazdı
-
- 20 Haz, 2014 2 kayıt (commit)
-
-
Charles-François Natali yazdı
-
Terry Jan Reedy yazdı
-
- 08 Haz, 2014 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
Original patch by Amaury Forgeot d'Arc with a test by bdettmer.
-
- 07 Haz, 2014 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
Patch by Víctor Terrón.
-
- 17 Eyl, 2014 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 22 Şub, 2014 1 kayıt (commit)
-
-
Eric Snow yazdı
I'll look into re-enabling them in issue #20128.
-
- 21 Şub, 2014 1 kayıt (commit)
-
-
Larry Hastings yazdı
for bound methods. Previous to this change, it displayed "self" for methods implemented in Python but not methods implemented in C; it is now both internally consistent and consistent with inspect.Signature.
-
- 19 Şub, 2014 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 22 Şub, 2014 1 kayıt (commit)
-
-
Eric Snow yazdı
I'll look into re-enabling them in issue #20128.
-
- 21 Şub, 2014 1 kayıt (commit)
-
-
Larry Hastings yazdı
for bound methods. Previous to this change, it displayed "self" for methods implemented in Python but not methods implemented in C; it is now both internally consistent and consistent with inspect.Signature.
-
- 18 Ock, 2014 1 kayıt (commit)
-
-
Stefan Krah yazdı
-
- 16 Ock, 2014 1 kayıt (commit)
-
-
Larry Hastings yazdı
-
- 07 Ock, 2014 1 kayıt (commit)
-
-
Eric Snow yazdı
-
- 05 Ock, 2014 3 kayıt (commit)
- 05 Kas, 2013 1 kayıt (commit)
-
-
Terry Jan Reedy yazdı
Patch by Serhiy Storchaka and Vajrasky Kok.
-
- 22 Eki, 2013 1 kayıt (commit)
-
-
Ethan Furman yazdı
-
- 21 Eki, 2013 2 kayıt (commit)
-
-
Charles-François Natali yazdı
-
Ethan Furman yazdı
Issue #19030: final pieces for proper location of various class attributes located in the metaclass. Okay, hopefully the very last patch for this issue. :/ I realized when playing with Enum that the metaclass attributes weren't always displayed properly. New patch properly locates DynamicClassAttributes, virtual class attributes (returned by __getattr__ and friends), and metaclass class attributes (if they are also in the metaclass __dir__ method). Also had to change one line in pydoc to get this to work. Added tests in test_inspect and test_pydoc to cover these situations.
-
- 04 Tem, 2013 1 kayıt (commit)
-
-
Brett Cannon yazdı
ModuleNotFoundError.
-
- 12 Haz, 2013 1 kayıt (commit)
-
-
Brett Cannon yazdı
ImportError. The exception is raised by import when a module could not be found. Technically this is defined as no viable loader could be found for the specified module. This includes ``from ... import`` statements so that the module usage is consistent for all situations where import couldn't find what was requested. This should allow for the common idiom of:: try: import something except ImportError: pass to be updated to using ModuleNotFoundError and not accidentally mask ImportError messages that should propagate (e.g. issues with a loader). This work was driven by the fact that the ``from ... import`` statement needed to be able to tell the difference between an ImportError that simply couldn't find a module (and thus silence the exception so that ceval can raise it) and an ImportError that represented an actual problem.
-
- 19 May, 2013 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
- 04 May, 2013 1 kayıt (commit)
-
-
Brett Cannon yazdı
other tests.
-
- 19 Mar, 2013 3 kayıt (commit)
-
-
R David Murray yazdı
This fixes a regression relative to Python2. (In 2, methods on a class were unbound methods and matched the inspect queries being done, in 3 they are just functions and so were missed). This is an undocumented function that pydoc itself does not use, but I found that numpy at least uses it in its documentation generator. Original patch by Matt Bachmann.
-
R David Murray yazdı
This fixes a regression relative to Python2. (In 2, methods on a class were unbound methods and matched the inspect queries being done, in 3 they are just functions and so were missed). This is an undocumented function that pydoc itself does not use, but I found that numpy at least uses it in its documentation generator. Original patch by Matt Bachmann.
-
R David Murray yazdı
Patch by Matt Bachmann.
-
- 27 Ock, 2013 2 kayıt (commit)
-
-
Serhiy Storchaka yazdı
--without-doc-strings.
-
Serhiy Storchaka yazdı
--without-doc-strings option.
-
- 26 Ock, 2013 1 kayıt (commit)
-
-
Stefan Krah yazdı
-
- 23 Nis, 2012 2 kayıt (commit)
-
-
R David Murray yazdı
Original patch by Peter Otten.
-
R David Murray yazdı
Original patch by Peter Otten.
-
- 14 Nis, 2012 1 kayıt (commit)
-
-
Brett Cannon yazdı
importlib._bootstrap is now frozen into Python/importlib.h and stored as _frozen_importlib in sys.modules. Py_Initialize() loads the frozen code along with sys and imp and then uses _frozen_importlib._install() to set builtins.__import__() w/ _frozen_importlib.__import__().
-
- 03 Şub, 2012 2 kayıt (commit)
- 06 Eki, 2011 2 kayıt (commit)
- 28 Eyl, 2011 1 kayıt (commit)
-
-
Ezio Melotti yazdı
-