- 26 Eki, 2017 1 kayıt (commit)
-
-
xdegaye yazdı
-
- 22 Eki, 2017 1 kayıt (commit)
-
-
Mark Shannon yazdı
Move exception state information from frame objects to coroutine (generator/thread) object where it belongs.
-
- 25 May, 2017 1 kayıt (commit)
-
-
Segev Finer yazdı
-
- 27 Ara, 2016 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
available only when Py_LIMITED_API is set to the PY_VERSION_HEX value of the minimum Python version supporting this API.
-
- 20 Kas, 2016 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
functions.
-
- 21 Eki, 2016 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
new exception with setting current exception as __cause__. _PyErr_FormatFromCause(exception, format, args...) is equivalent to Python raise exception(format % args) from sys.exc_info()[1]
-
- 07 Eyl, 2016 2 kayıt (commit)
- 03 Tem, 2015 1 kayıt (commit)
-
-
Yury Selivanov yazdı
-
- 12 May, 2015 1 kayıt (commit)
-
-
Yury Selivanov yazdı
-
- 20 Kas, 2014 1 kayıt (commit)
-
-
Nick Coghlan yazdı
- interpreter startup and shutdown code moved to a new pylifecycle.c module - Py_OptimizeFlag moved into the new module with the other global flags
-
- 08 Eki, 2014 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
_PyErr_ChainExceptions() function.
-
- 30 Eyl, 2014 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
Issue #18711: Add a new `PyErr_FormatV` function, similar to `PyErr_Format` but accepting a `va_list` argument.
-
- 10 Şub, 2014 2 kayıt (commit)
-
-
Larry Hastings yazdı
-
Larry Hastings yazdı
now register both filenames in the exception on failure. This required adding new C API functions allowing OSError exceptions to reference two filenames instead of one.
-
- 03 Ock, 2014 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 21 Ara, 2013 1 kayıt (commit)
-
-
Christian Heimes yazdı
-
- 13 Kas, 2013 1 kayıt (commit)
-
-
Nick Coghlan yazdı
- output type errors now redirect users to the type-neutral convenience functions in the codecs module - stateless errors that occur during encoding and decoding will now be automatically wrapped in exceptions that give the name of the codec involved
-
- 07 Eki, 2013 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
Fix macro expansion of _PyErr_OCCURRED(), and make sure to use it in at least one place so as to avoid regressions.
-
- 02 Eyl, 2013 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
- 26 Agu, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
filenames anymore on Windows.
-
- 04 Tem, 2013 2 kayıt (commit)
-
-
Brett Cannon yazdı
ModuleNotFoundError.
-
Brett Cannon yazdı
-
- 13 Haz, 2013 1 kayıt (commit)
-
-
Brett Cannon yazdı
Forgot to raise ModuleNotFoundError when None is found in sys.modules. This led to introducing the C function PyErr_SetImportErrorSubclass() to make setting ModuleNotFoundError easier. Also updated the reference docs to mention ModuleNotFoundError appropriately. Updated the docs for ModuleNotFoundError to mention the None in sys.modules case. Lastly, it was noticed that PyErr_SetImportError() was not setting an exception when returning None in one case. That issue is now fixed.
-
- 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.
-
- 09 Agu, 2012 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 17 Haz, 2012 1 kayıt (commit)
-
-
Nick Coghlan yazdı
-
- 04 Haz, 2012 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 15 May, 2012 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
This replaces the original PEP 409 implementation. See #14133.
-
- 19 Nis, 2012 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
Patch by Stefan Behnel.
-
- 17 Nis, 2012 1 kayıt (commit)
-
-
Brian Curtin yazdı
-
- 13 Nis, 2012 2 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
Brett Cannon yazdı
Currently import does not use these attributes as they are planned for use by importlib (which will be another commit). Thanks to Filip Gruszczyński for the initial patch and Brian Curtin for refining it.
-
- 26 Şub, 2012 1 kayıt (commit)
-
-
Nick Coghlan yazdı
-
- 13 Ock, 2012 1 kayıt (commit)
-
-
Nick Coghlan yazdı
-
- 12 Eki, 2011 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
- 28 Eyl, 2011 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 21 Mar, 2011 1 kayıt (commit)
-
-
Victor Stinner yazdı
PyErr_SetFromWindowsErrWithFilenameObject() was never implemented.
-
- 22 Şub, 2011 1 kayıt (commit)
-
-
Brett Cannon yazdı
-
- 28 Ara, 2010 1 kayıt (commit)
-
-
Victor Stinner yazdı
Forbidden in C, stupid language!
-