René's URL Explorer Experiment


Title: npython/Objects/exceptions/baseapi

direct link

Domain: npython.nimpylib.org

Nonetext/html; charset=utf-8

Links:

Indexhttps://npython.nimpylib.org/theindex.html
Importshttps://npython.nimpylib.org/npython/Objects/exceptions/baseapi.html#6
Procshttps://npython.nimpylib.org/npython/Objects/exceptions/baseapi.html#12
PyErr_Format[E: PyBaseErrorObject](exc: E; msg: PyStrObject)https://npython.nimpylib.org/npython/Objects/exceptions/baseapi.html#PyErr_Format%2CE%2CPyStrObject
Templateshttps://npython.nimpylib.org/npython/Objects/exceptions/baseapi.html#18
checkArgNum(expected: int; name = "")https://npython.nimpylib.org/npython/Objects/exceptions/baseapi.html#checkArgNum.t%2Cint%2Cstring
checkArgNum(min, max: int; name = "")https://npython.nimpylib.org/npython/Objects/exceptions/baseapi.html#checkArgNum.t%2Cint%2Cint%2Cstring
checkArgNumAtLeast(expected: int; name = "")https://npython.nimpylib.org/npython/Objects/exceptions/baseapi.html#checkArgNumAtLeast.t%2Cint%2Cstring
checkArgNumAtMost(expected: int; name = "")https://npython.nimpylib.org/npython/Objects/exceptions/baseapi.html#checkArgNumAtMost.t%2Cint%2Cstring
errArgNum(argsLen, expected: int; name = "")https://npython.nimpylib.org/npython/Objects/exceptions/baseapi.html#errArgNum.t%2Cint%2Cint%2Cstring
errorIfNot(S; expect: string; pyObj: PyObject; methodName: string; doIt: untyped = retIt)https://npython.nimpylib.org/npython/Objects/exceptions/baseapi.html#errorIfNot.t%2C%2Cstring%2CPyObject%2Cstring%2Cuntyped
errorIfNot(S; pyObj: PyObject; methodName: string; doIt: untyped = retIt)https://npython.nimpylib.org/npython/Objects/exceptions/baseapi.html#errorIfNot.t%2C%2CPyObject%2Cstring%2Cuntyped
errorIfNotBool(pyObj: PyObject; methodName: string; doIt: untyped = retIt)https://npython.nimpylib.org/npython/Objects/exceptions/baseapi.html#errorIfNotBool.t%2CPyObject%2Cstring%2Cuntyped
errorIfNotString(pyObj: untyped; methodName: string; doIt: untyped = retIt)https://npython.nimpylib.org/npython/Objects/exceptions/baseapi.html#errorIfNotString.t%2Cuntyped%2Cstring%2Cuntyped
getIterableWithCheck(obj: PyObject): (PyObject, UnaryMethod)https://npython.nimpylib.org/npython/Objects/exceptions/baseapi.html#getIterableWithCheck.t%2CPyObject
isThrownException(pyObj: PyObject): boolhttps://npython.nimpylib.org/npython/Objects/exceptions/baseapi.html#isThrownException.t%2CPyObject
retIfExc(e: PyBaseErrorObject)https://npython.nimpylib.org/npython/Objects/exceptions/baseapi.html#retIfExc.t%2CPyBaseErrorObject
retIfExc(e: PyObject)https://npython.nimpylib.org/npython/Objects/exceptions/baseapi.html#retIfExc.t%2CPyObject
Sourcehttps://github.com/nimpylib/npython/tree/master/npython/Objects/exceptions/baseapi.nim#L1
Edithttps://github.com/nimpylib/npython/edit/devel/npython/Objects/exceptions/baseapi.nim#L1
Importshttps://npython.nimpylib.org/npython/Objects/exceptions/baseapi.html#6
../pyobjectBasehttps://npython.nimpylib.org/npython/Objects/pyobjectBase.html
../stringobjecthttps://npython.nimpylib.org/npython/Objects/stringobject.html
../tupleobject/declhttps://npython.nimpylib.org/npython/Objects/tupleobject/decl.html
basehttps://npython.nimpylib.org/npython/Objects/exceptions/base.html
../../Utils/compathttps://npython.nimpylib.org/npython/Utils/compat.html
Procshttps://npython.nimpylib.org/npython/Objects/exceptions/baseapi.html#12
PyErr_Formathttps://npython.nimpylib.org/npython/Objects/exceptions/baseapi.html#PyErr_Format%2CE%2CPyStrObject
PyBaseErrorObjecthttps://npython.nimpylib.org/npython/Objects/exceptions/base.html#PyBaseErrorObject
PyStrObjecthttps://npython.nimpylib.org/npython/Objects/stringobject.html#PyStrObject
Sourcehttps://github.com/nimpylib/npython/tree/master/npython/Objects/exceptions/baseapi.nim#L102
Edithttps://github.com/nimpylib/npython/edit/devel/npython/Objects/exceptions/baseapi.nim#L102
Templateshttps://npython.nimpylib.org/npython/Objects/exceptions/baseapi.html#18
checkArgNumhttps://npython.nimpylib.org/npython/Objects/exceptions/baseapi.html#checkArgNum.t%2Cint%2Cstring
Sourcehttps://github.com/nimpylib/npython/tree/master/npython/Objects/exceptions/baseapi.nim#L82
Edithttps://github.com/nimpylib/npython/edit/devel/npython/Objects/exceptions/baseapi.nim#L82
checkArgNumhttps://npython.nimpylib.org/npython/Objects/exceptions/baseapi.html#checkArgNum.t%2Cint%2Cint%2Cstring
Sourcehttps://github.com/nimpylib/npython/tree/master/npython/Objects/exceptions/baseapi.nim#L98
Edithttps://github.com/nimpylib/npython/edit/devel/npython/Objects/exceptions/baseapi.nim#L98
checkArgNumAtLeasthttps://npython.nimpylib.org/npython/Objects/exceptions/baseapi.html#checkArgNumAtLeast.t%2Cint%2Cstring
Sourcehttps://github.com/nimpylib/npython/tree/master/npython/Objects/exceptions/baseapi.nim#L88
Edithttps://github.com/nimpylib/npython/edit/devel/npython/Objects/exceptions/baseapi.nim#L88
checkArgNumAtMosthttps://npython.nimpylib.org/npython/Objects/exceptions/baseapi.html#checkArgNumAtMost.t%2Cint%2Cstring
Sourcehttps://github.com/nimpylib/npython/tree/master/npython/Objects/exceptions/baseapi.nim#L93
Edithttps://github.com/nimpylib/npython/edit/devel/npython/Objects/exceptions/baseapi.nim#L93
errArgNumhttps://npython.nimpylib.org/npython/Objects/exceptions/baseapi.html#errArgNum.t%2Cint%2Cint%2Cstring
Sourcehttps://github.com/nimpylib/npython/tree/master/npython/Objects/exceptions/baseapi.nim#L78
Edithttps://github.com/nimpylib/npython/edit/devel/npython/Objects/exceptions/baseapi.nim#L78
errorIfNothttps://npython.nimpylib.org/npython/Objects/exceptions/baseapi.html#errorIfNot.t%2C%2Cstring%2CPyObject%2Cstring%2Cuntyped
PyObjecthttps://npython.nimpylib.org/npython/Objects/pyobjectBase.html#PyObject
Sourcehttps://github.com/nimpylib/npython/tree/master/npython/Objects/exceptions/baseapi.nim#L14
Edithttps://github.com/nimpylib/npython/edit/devel/npython/Objects/exceptions/baseapi.nim#L14
errorIfNothttps://npython.nimpylib.org/npython/Objects/exceptions/baseapi.html#errorIfNot.t%2C%2CPyObject%2Cstring%2Cuntyped
PyObjecthttps://npython.nimpylib.org/npython/Objects/pyobjectBase.html#PyObject
Sourcehttps://github.com/nimpylib/npython/tree/master/npython/Objects/exceptions/baseapi.nim#L25
Edithttps://github.com/nimpylib/npython/edit/devel/npython/Objects/exceptions/baseapi.nim#L25
errorIfNotBoolhttps://npython.nimpylib.org/npython/Objects/exceptions/baseapi.html#errorIfNotBool.t%2CPyObject%2Cstring%2Cuntyped
PyObjecthttps://npython.nimpylib.org/npython/Objects/pyobjectBase.html#PyObject
Sourcehttps://github.com/nimpylib/npython/tree/master/npython/Objects/exceptions/baseapi.nim#L27
Edithttps://github.com/nimpylib/npython/edit/devel/npython/Objects/exceptions/baseapi.nim#L27
errorIfNotStringhttps://npython.nimpylib.org/npython/Objects/exceptions/baseapi.html#errorIfNotString.t%2Cuntyped%2Cstring%2Cuntyped
Sourcehttps://github.com/nimpylib/npython/tree/master/npython/Objects/exceptions/baseapi.nim#L22
Edithttps://github.com/nimpylib/npython/edit/devel/npython/Objects/exceptions/baseapi.nim#L22
getIterableWithCheckhttps://npython.nimpylib.org/npython/Objects/exceptions/baseapi.html#getIterableWithCheck.t%2CPyObject
PyObjecthttps://npython.nimpylib.org/npython/Objects/pyobjectBase.html#PyObject
PyObjecthttps://npython.nimpylib.org/npython/Objects/pyobjectBase.html#PyObject
UnaryMethodhttps://npython.nimpylib.org/npython/Objects/pyobjectBase.html#UnaryMethod
Sourcehttps://github.com/nimpylib/npython/tree/master/npython/Objects/exceptions/baseapi.nim#L52
Edithttps://github.com/nimpylib/npython/edit/devel/npython/Objects/exceptions/baseapi.nim#L52
isThrownExceptionhttps://npython.nimpylib.org/npython/Objects/exceptions/baseapi.html#isThrownException.t%2CPyObject
PyObjecthttps://npython.nimpylib.org/npython/Objects/pyobjectBase.html#PyObject
Sourcehttps://github.com/nimpylib/npython/tree/master/npython/Objects/exceptions/baseapi.nim#L7
Edithttps://github.com/nimpylib/npython/edit/devel/npython/Objects/exceptions/baseapi.nim#L7
retIfExchttps://npython.nimpylib.org/npython/Objects/exceptions/baseapi.html#retIfExc.t%2CPyBaseErrorObject
PyBaseErrorObjecthttps://npython.nimpylib.org/npython/Objects/exceptions/base.html#PyBaseErrorObject
Sourcehttps://github.com/nimpylib/npython/tree/master/npython/Objects/exceptions/baseapi.nim#L30
Edithttps://github.com/nimpylib/npython/edit/devel/npython/Objects/exceptions/baseapi.nim#L30
retIfExchttps://npython.nimpylib.org/npython/Objects/exceptions/baseapi.html#retIfExc.t%2CPyObject
PyObjecthttps://npython.nimpylib.org/npython/Objects/pyobjectBase.html#PyObject
Sourcehttps://github.com/nimpylib/npython/tree/master/npython/Objects/exceptions/baseapi.nim#L35
Edithttps://github.com/nimpylib/npython/edit/devel/npython/Objects/exceptions/baseapi.nim#L35

Viewport: width=device-width, initial-scale=1.0


URLs of crawlers that visited me.