René's URL Explorer Experiment


Title: Still cannot create Nullable(None) · Issue #1693 · pythonnet/pythonnet · GitHub

Open Graph Title: Still cannot create Nullable(None) · Issue #1693 · pythonnet/pythonnet

X Title: Still cannot create Nullable(None) · Issue #1693 · pythonnet/pythonnet

Description: Environment Pythonnet version: 2.5.2 Python version: 3.8.7 Operating System: Windows 10 .NET Runtime: Runtime Environment: OS Name: Windows OS Version: 10.0.19044 OS Platform: Windows RID: win10-x64 Base Path: C:\Program Files\dotnet\sdk...

Open Graph Description: Environment Pythonnet version: 2.5.2 Python version: 3.8.7 Operating System: Windows 10 .NET Runtime: Runtime Environment: OS Name: Windows OS Version: 10.0.19044 OS Platform: Windows RID: win10-x6...

X Description: Environment Pythonnet version: 2.5.2 Python version: 3.8.7 Operating System: Windows 10 .NET Runtime: Runtime Environment: OS Name: Windows OS Version: 10.0.19044 OS Platform: Windows RID: win10-x6...

Opengraph URL: https://github.com/pythonnet/pythonnet/issues/1693

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Still cannot create Nullable\u003cT\u003e(None)","articleBody":"### Environment\r\n\r\n-   Pythonnet version: 2.5.2\r\n-   Python version: 3.8.7\r\n-   Operating System: Windows 10\r\n-   .NET Runtime: \r\n Runtime Environment:\r\n OS Name:     Windows\r\n OS Version:  10.0.19044\r\n OS Platform: Windows\r\n RID:         win10-x64\r\n Base Path:   C:\\Program Files\\dotnet\\sdk\\6.0.101\\\r\n\r\n### Details\r\n\r\n-   Describe what you were trying to get done.\r\n\r\n   I was trying to invoke a C# function with an argument of type Nullable\u003cT\u003e. Python.NET reported that it could find no function matching the arguments. Eventually, I tried to test the fix for issue #460.\r\n\r\n-   What commands did you run to trigger this issue? If you can provide a\r\n    [Minimal, Complete, and Verifiable example](http://stackoverflow.com/help/mcve)\r\n    this will help us understand the issue.\r\n\r\n```ipython\r\nPython 3.8.7 (tags/v3.8.7:6503f05, Dec 21 2020, 17:59:51) [MSC v.1928 64 bit (AMD64)]\r\nType 'copyright', 'credits' or 'license' for more information\r\nIPython 7.28.0 -- An enhanced Interactive Python. Type '?' for help.\r\n\r\n[ins] In [1]: import clr\r\n\r\n[ins] In [2]: from System import (UInt32, Nullable)\r\n\r\n[ins] In [3]: Nullable[UInt32](3)\r\nOut[3]: \u003cSystem.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] object at 0x0000020A6AF106D0\u003e\r\n\r\n[ins] In [4]: Nullable[UInt32](None)\r\n---------------------------------------------------------------------------\r\nTypeError                                 Traceback (most recent call last)\r\n\u003cipython-input-4-b1659b301f87\u003e in \u003cmodule\u003e\r\n----\u003e 1 Nullable[UInt32](None)\r\n\r\nTypeError: No constructor matches given arguments: (\u003cclass 'NoneType'\u003e)\r\n```\r\n\r\n-   If there was a crash, please include the traceback here.\r\n\r\nI also tried testing against pythonnet 3.0.0.a2. I see the following stack trace.\r\n\r\n```ipython                                                                                                  \r\nPython 3.8.7 (tags/v3.8.7:6503f05, Dec 21 2020, 17:59:51) [MSC v.1928 64 bit (AMD64)]                                                             \r\nType 'copyright', 'credits' or 'license' for more information                                                                                     \r\nIPython 8.0.1 -- An enhanced Interactive Python. Type '?' for help.                                                                               \r\n                                                                                                                                                  \r\n[ins] In [1]: import clr                                                                                                                          \r\n                                                                                                                                                  \r\n[ins] In [2]: from System import DateTime, Double, Guid, Nullable, String, UInt32                                                                 \r\n                                                                                                                                                  \r\n[ins] In [3]: Nullable[Double](None)                                                                                                              \r\nPython.Runtime.PythonException: 'NoneType' value cannot be converted to System.Double                                                             \r\n                                                                                                                                                  \r\n                                                                                                                                                  \r\nThe above exception was the direct cause of the following exception:                                                                              \r\n                                                                                                                                                  \r\nSystem.ArgumentException: 'NoneType' value cannot be converted to System.Double in method Void .ctor(Double) ---\u003e Python.Runtime.PythonException: \r\n'NoneType' value cannot be converted to System.Double                                                                                             \r\n                                                                                                                                                  \r\n   --- End of inner exception stack trace ---                                                                                                     \r\n                                                                                                                                                  \r\nThe above exception was the direct cause of the following exception:                                                                              \r\n                                                                                                                                                  \r\nSystem.AggregateException: One or more errors occurred. ---\u003e System.ArgumentException: 'NoneType' value cannot be converted to System.Double in me\r\nthod Void .ctor(Double) ---\u003e Python.Runtime.PythonException: 'NoneType' value cannot be converted to System.Double                                \r\n                                                                                                                                                  \r\n                                                                                                                                                  \r\n   --- End of inner exception stack trace ---                                                                                                     \r\n   --- End of inner exception stack trace ---                                                                                                     \r\n---\u003e (Inner Exception #0) System.ArgumentException: 'NoneType' value cannot be converted to System.Double in method Void .ctor(Double) ---\u003e Python\r\n.Runtime.PythonException: 'NoneType' value cannot be converted to System.Double                                                                   \r\n                                                                                                                                                  \r\n   --- End of inner exception stack trace ---\u003c---                                                                                                 \r\n                                                                                                                                                  \r\n                                                                                                                                                  \r\nThe above exception was the direct cause of the following exception:                                                                              \r\n                                                                                                                                                  \r\nTraceback (most recent call last):                                                                                                                \r\n  File \"C:\\Users\\larry.jones\\AppData\\Local\\pypoetry\\Cache\\virtualenvs\\libpy-QVeQv1xn-py3.8\\lib\\site-packages\\IPython\\core\\interactiveshell.py\", li\r\nne 3251, in run_code                                                                                                                              \r\n                                                                                                                                                  \r\n    exec(code_obj, self.user_global_ns, self.user_ns)                                                                                             \r\n  File \"\u003cipython-input-3-3b78c20f70fb\u003e\", line 1, in \u003cmodule\u003e                                                                                      \r\n    Nullable[Double](None)                                                                                                                        \r\nTypeError: No constructor matches given arguments: (\u003cclass 'NoneType'\u003e)                                                                           \r\n                                                                                                                                                  \r\nDuring handling of the above exception, another exception occurred:                                                                               \r\n                                                                                                                                                  \r\nTraceback (most recent call last):                                                                                                                \r\n  File \"C:\\Users\\larry.jones\\AppData\\Local\\pypoetry\\Cache\\virtualenvs\\libpy-QVeQv1xn-py3.8\\lib\\site-packages\\IPython\\core\\interactiveshell.py\", li\r\nne 1934, in showtraceback                                                                                                                         \r\n                                                                                                                                                  \r\n    stb = value._render_traceback_()                                                                                                              \r\nAttributeError: 'TypeError' object has no attribute '_render_traceback_'                                                                          \r\n                                                                                                                                                  \r\nDuring handling of the above exception, another exception occurred:                                                                               \r\n                                                                                                                                                  \r\nTraceback (most recent call last):                                                                                                                \r\n  File \"C:\\Users\\larry.jones\\AppData\\Local\\pypoetry\\Cache\\virtualenvs\\libpy-QVeQv1xn-py3.8\\lib\\site-packages\\IPython\\core\\interactiveshell.py\", li\r\nne 3191, in run_ast_nodes                                                                                                                         \r\n                                                                                                                                                  \r\n    if await self.run_code(code, result, async_=asy):                                                                                             \r\n  File \"C:\\Users\\larry.jones\\AppData\\Local\\pypoetry\\Cache\\virtualenvs\\libpy-QVeQv1xn-py3.8\\lib\\site-packages\\IPython\\core\\interactiveshell.py\", li\r\nne 3268, in run_code                                                                                                                              \r\n                                                                                                                                                  \r\n    self.showtraceback(running_compiled_code=True)                                                                                                \r\n  File \"C:\\Users\\larry.jones\\AppData\\Local\\pypoetry\\Cache\\virtualenvs\\libpy-QVeQv1xn-py3.8\\lib\\site-packages\\IPython\\core\\interactiveshell.py\", li\r\nne 1936, in showtraceback                                                                                                                         \r\n                                                                                                                                                  \r\n    stb = self.InteractiveTB.structured_traceback(etype,                                                                                          \r\n  File \"C:\\Users\\larry.jones\\AppData\\Local\\pypoetry\\Cache\\virtualenvs\\libpy-QVeQv1xn-py3.8\\lib\\site-packages\\IPython\\core\\ultratb.py\", line 1105, \r\nin structured_traceback                                                                                                                           \r\n                                                                                                                                                  \r\n    return FormattedTB.structured_traceback(                                                                                                      \r\n  File \"C:\\Users\\larry.jones\\AppData\\Local\\pypoetry\\Cache\\virtualenvs\\libpy-QVeQv1xn-py3.8\\lib\\site-packages\\IPython\\core\\ultratb.py\", line 999, i\r\nn structured_traceback                                                                                                                            \r\n                                                                                                                                                  \r\n    return VerboseTB.structured_traceback(                                                                                                        \r\n  File \"C:\\Users\\larry.jones\\AppData\\Local\\pypoetry\\Cache\\virtualenvs\\libpy-QVeQv1xn-py3.8\\lib\\site-packages\\IPython\\core\\ultratb.py\", line 871, i\r\nn structured_traceback                                                                                                                            \r\n                                                                                                                                                  \r\n    formatted_exceptions += self.format_exception_as_a_whole(etype, evalue, etb, lines_of_context,                                                \r\n                                                                                                                                                  \r\n  File \"C:\\Users\\larry.jones\\AppData\\Local\\pypoetry\\Cache\\virtualenvs\\libpy-QVeQv1xn-py3.8\\lib\\site-packages\\IPython\\core\\ultratb.py\", line 775, i\r\nn format_exception_as_a_whole                                                                                                                     \r\n                                                                                                                                                  \r\n    assert etb is not None                                                                                                                        \r\nAssertionError                                                                                                                                    \r\n                                                                                                                                                  \r\nDuring handling of the above exception, another exception occurred:                                                                               \r\n                                                                                                                                                  \r\nTraceback (most recent call last):                                                                                                                \r\n  File \"C:\\Users\\larry.jones\\AppData\\Local\\pypoetry\\Cache\\virtualenvs\\libpy-QVeQv1xn-py3.8\\lib\\site-packages\\IPython\\core\\interactiveshell.py\", li\r\nne 1934, in showtraceback                                                                                                                         \r\n                                                                                                                                                  \r\n    stb = value._render_traceback_()                                                                                                              \r\nAttributeError: 'AssertionError' object has no attribute '_render_traceback_'                                                                     \r\n                                                                                                                                                  \r\nDuring handling of the above exception, another exception occurred:                                                                               \r\n                                                                                                                                                  \r\nTraceback (most recent call last):                                                                                                                \r\n  File \"C:\\Users\\larry.jones\\AppData\\Local\\pypoetry\\Cache\\virtualenvs\\libpy-QVeQv1xn-py3.8\\lib\\site-packages\\IPython\\core\\interactiveshell.py\", li\r\nne 2814, in _run_cell                                                                                                                             \r\n                                                                                                                                                  \r\n    return runner(coro)                                                                                                                           \r\n  File \"C:\\Users\\larry.jones\\AppData\\Local\\pypoetry\\Cache\\virtualenvs\\libpy-QVeQv1xn-py3.8\\lib\\site-packages\\IPython\\core\\async_helpers.py\", line \r\n129, in _pseudo_sync_runner                                                                                                                       \r\n                                                                                                                                                  \r\n    coro.send(None)                                                                                                                               \r\n  File \"C:\\Users\\larry.jones\\AppData\\Local\\pypoetry\\Cache\\virtualenvs\\libpy-QVeQv1xn-py3.8\\lib\\site-packages\\IPython\\core\\interactiveshell.py\", li\r\nne 3012, in run_cell_async                                                                                                                        \r\n                                                                                                                                                  \r\n    has_raised = await self.run_ast_nodes(code_ast.body, cell_name,                                                                               \r\n  File \"C:\\Users\\larry.jones\\AppData\\Local\\pypoetry\\Cache\\virtualenvs\\libpy-QVeQv1xn-py3.8\\lib\\site-packages\\IPython\\core\\interactiveshell.py\", li\r\nne 3210, in run_ast_nodes                                                                                                                         \r\n                                                                                                                                                  \r\n    self.showtraceback()                                                                                                                          \r\n  File \"C:\\Users\\larry.jones\\AppData\\Local\\pypoetry\\Cache\\virtualenvs\\libpy-QVeQv1xn-py3.8\\lib\\site-packages\\IPython\\core\\interactiveshell.py\", li\r\nne 1936, in showtraceback                                                                                                                         \r\n                                                                                                                                                  \r\n    stb = self.InteractiveTB.structured_traceback(etype,                                                                                          \r\n  File \"C:\\Users\\larry.jones\\AppData\\Local\\pypoetry\\Cache\\virtualenvs\\libpy-QVeQv1xn-py3.8\\lib\\site-packages\\IPython\\core\\ultratb.py\", line 1105, \r\nin structured_traceback                                                                                                                           \r\n                                                                                                                                                  \r\n    return FormattedTB.structured_traceback(                                                                                                      \r\n  File \"C:\\Users\\larry.jones\\AppData\\Local\\pypoetry\\Cache\\virtualenvs\\libpy-QVeQv1xn-py3.8\\lib\\site-packages\\IPython\\core\\ultratb.py\", line 999, i\r\nn structured_traceback                                                                                                                            \r\n                                                                                                                                                  \r\n    return VerboseTB.structured_traceback(                                                                                                        \r\n  File \"C:\\Users\\larry.jones\\AppData\\Local\\pypoetry\\Cache\\virtualenvs\\libpy-QVeQv1xn-py3.8\\lib\\site-packages\\IPython\\core\\ultratb.py\", line 871, i\r\nn structured_traceback                                                                                                                            \r\n                                                                                                                                                  \r\n    formatted_exceptions += self.format_exception_as_a_whole(etype, evalue, etb, lines_of_context,                                                \r\n                                                                                                                                                  \r\n  File \"C:\\Users\\larry.jones\\AppData\\Local\\pypoetry\\Cache\\virtualenvs\\libpy-QVeQv1xn-py3.8\\lib\\site-packages\\IPython\\core\\ultratb.py\", line 775, i\r\nn format_exception_as_a_whole                                                                                                                     \r\n                                                                                                                                                  \r\n    assert etb is not None                                                                                                                        \r\nAssertionError                                                                                                                                    \r\n                                                                                                                                                  \r\nDuring handling of the above exception, another exception occurred:                                                                               \r\n                                                                                                                                                  \r\nTraceback (most recent call last):                                                                                                                \r\n  File \"C:\\Users\\larry.jones\\AppData\\Local\\pypoetry\\Cache\\virtualenvs\\libpy-QVeQv1xn-py3.8\\lib\\site-packages\\IPython\\core\\interactiveshell.py\", li\r\nne 1934, in showtraceback                                                                                                                         \r\n                                                                                                                                                  \r\n    stb = value._render_traceback_()                                                                                                              \r\nAttributeError: 'AssertionError' object has no attribute '_render_traceback_'                                                                     \r\n                                                                                                                                                  \r\nDuring handling of the above exception, another exception occurred:                                                                               \r\n                                                                                                                                                  \r\nTraceback (most recent call last):                                                                                                                \r\n  File \"C:\\Users\\larry.jones\\AppData\\Local\\Programs\\Python\\Python38\\lib\\runpy.py\", line 194, in _run_module_as_main                               \r\n                                                                                                                                                  \r\n    return _run_code(code, main_globals, None,                                                                                                    \r\n  File \"C:\\Users\\larry.jones\\AppData\\Local\\Programs\\Python\\Python38\\lib\\runpy.py\", line 87, in _run_code                                          \r\n                                                                                                                                                  \r\n    exec(code, run_globals)                                                                                                                       \r\n  File \"C:\\Users\\larry.jones\\AppData\\Local\\pypoetry\\Cache\\virtualenvs\\libpy-QVeQv1xn-py3.8\\Scripts\\ipython.exe\\__main__.py\", line 7, in \u003cmodule\u003e  \r\n                                                                                                                                                  \r\n    sys.exit(start_ipython())                                                                                                                     \r\n  File \"C:\\Users\\larry.jones\\AppData\\Local\\pypoetry\\Cache\\virtualenvs\\libpy-QVeQv1xn-py3.8\\lib\\site-packages\\IPython\\__init__.py\", line 123, in st\r\nart_ipython                                                                                                                                       \r\n    return launch_new_instance(argv=argv, **kwargs)                                                                                               \r\n  File \"C:\\Users\\larry.jones\\AppData\\Local\\pypoetry\\Cache\\virtualenvs\\libpy-QVeQv1xn-py3.8\\lib\\site-packages\\traitlets\\config\\application.py\", lin\r\ne 846, in launch_instance                                                                                                                         \r\n                                                                                                                                                  \r\n    app.start()                                                                                                                                   \r\n  File \"C:\\Users\\larry.jones\\AppData\\Local\\pypoetry\\Cache\\virtualenvs\\libpy-QVeQv1xn-py3.8\\lib\\site-packages\\IPython\\terminal\\ipapp.py\", line 316,\r\n in start                                                                                                                                         \r\n    self.shell.mainloop()                                                                                                                         \r\n  File \"C:\\Users\\larry.jones\\AppData\\Local\\pypoetry\\Cache\\virtualenvs\\libpy-QVeQv1xn-py3.8\\lib\\site-packages\\IPython\\terminal\\interactiveshell.py\"\r\n, line 611, in mainloop                                                                                                                           \r\n                                                                                                                                                  \r\n    self.interact()                                                                                                                               \r\n  File \"C:\\Users\\larry.jones\\AppData\\Local\\pypoetry\\Cache\\virtualenvs\\libpy-QVeQv1xn-py3.8\\lib\\site-packages\\IPython\\terminal\\interactiveshell.py\"\r\n, line 604, in interact                                                                                                                           \r\n                                                                                                                                                  \r\n    self.run_cell(code, store_history=True)                                                                                                       \r\n  File \"C:\\Users\\larry.jones\\AppData\\Local\\pypoetry\\Cache\\virtualenvs\\libpy-QVeQv1xn-py3.8\\lib\\site-packages\\IPython\\core\\interactiveshell.py\", li\r\nne 2768, in run_cell                                                                                                                              \r\n                                                                                                                                                  \r\n    result = self._run_cell(                                                                                                                      \r\n  File \"C:\\Users\\larry.jones\\AppData\\Local\\pypoetry\\Cache\\virtualenvs\\libpy-QVeQv1xn-py3.8\\lib\\site-packages\\IPython\\core\\interactiveshell.py\", li\r\nne 2819, in _run_cell                                                                                                                             \r\n                                                                                                                                                  \r\n    self.showtraceback(running_compiled_code=True)                                                                                                \r\n  File \"C:\\Users\\larry.jones\\AppData\\Local\\pypoetry\\Cache\\virtualenvs\\libpy-QVeQv1xn-py3.8\\lib\\site-packages\\IPython\\core\\interactiveshell.py\", li\r\nne 1936, in showtraceback                                                                                                                         \r\n                                                                                                                                                  \r\n    stb = self.InteractiveTB.structured_traceback(etype,                                                                                          \r\n  File \"C:\\Users\\larry.jones\\AppData\\Local\\pypoetry\\Cache\\virtualenvs\\libpy-QVeQv1xn-py3.8\\lib\\site-packages\\IPython\\core\\ultratb.py\", line 1105, \r\nin structured_traceback                                                                                                                           \r\n                                                                                                                                                  \r\n    return FormattedTB.structured_traceback(                                                                                                      \r\n  File \"C:\\Users\\larry.jones\\AppData\\Local\\pypoetry\\Cache\\virtualenvs\\libpy-QVeQv1xn-py3.8\\lib\\site-packages\\IPython\\core\\ultratb.py\", line 999, i\r\nn structured_traceback                                                                                                                            \r\n                                                                                                                                                  \r\n    return VerboseTB.structured_traceback(                                                                                                        \r\n  File \"C:\\Users\\larry.jones\\AppData\\Local\\pypoetry\\Cache\\virtualenvs\\libpy-QVeQv1xn-py3.8\\lib\\site-packages\\IPython\\core\\ultratb.py\", line 871, i\r\nn structured_traceback                                                                                                                            \r\n                                                                                                                                                  \r\n    formatted_exceptions += self.format_exception_as_a_whole(etype, evalue, etb, lines_of_context,                                                \r\n                                                                                                                                                  \r\n  File \"C:\\Users\\larry.jones\\AppData\\Local\\pypoetry\\Cache\\virtualenvs\\libpy-QVeQv1xn-py3.8\\lib\\site-packages\\IPython\\core\\ultratb.py\", line 775, i\r\nn format_exception_as_a_whole                                                                                                                     \r\n                                                                                                                                                  \r\n    assert etb is not None                                                                                                                        \r\nAssertionError                                                                                                                                    \r\n                                                                                                                                                  \r\nIf you suspect this is an IPython 8.0.1 bug, please report it at:                                                                                 \r\n    https://github.com/ipython/ipython/issues                                                                                                     \r\nor send an email to the mailing list at ipython-dev@python.org                                                                                    \r\n                                                                                                                                                  \r\nYou can print a more detailed traceback right now with \"%tb\", or use \"%debug\"                                                                     \r\nto interactively debug it.                                                                                                                        \r\n                                                                                                                                                  \r\nExtra-detailed tracebacks for bug-reporting purposes can be enabled via:                                                                          \r\n    %config Application.verbose_crash=True                                                                                                        \r\n                                                                                                                                                  \r\n\r\n```","author":{"url":"https://github.com/mrwizard82d1","@type":"Person","name":"mrwizard82d1"},"datePublished":"2022-02-09T01:52:49.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":3},"url":"https://github.com/1693/pythonnet/issues/1693"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:4cf343c1-697f-301f-8608-614888451a5c
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idB336:36B19:B1812D:F88372:6970B8D7
html-safe-nonceba4b9c311dbbaefda5f9398103e25cf5aa7a2565624bca5178c9ce5becb208ce
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJCMzM2OjM2QjE5OkIxODEyRDpGODgzNzI6Njk3MEI4RDciLCJ2aXNpdG9yX2lkIjoiNzA1MDMyODkyODU3NjEyNTE0MyIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmac6a0a0e4a70c8db1afc227614b62bec1b070c72775b79d9a069d2ffd032e2f5dc
hovercard-subject-tagissue:1127953756
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/pythonnet/pythonnet/1693/issue_layout
twitter:imagehttps://opengraph.githubassets.com/6f39e82cf042e03f0e315edaca913256147449e90c3863430db5d18a642a014e/pythonnet/pythonnet/issues/1693
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/6f39e82cf042e03f0e315edaca913256147449e90c3863430db5d18a642a014e/pythonnet/pythonnet/issues/1693
og:image:altEnvironment Pythonnet version: 2.5.2 Python version: 3.8.7 Operating System: Windows 10 .NET Runtime: Runtime Environment: OS Name: Windows OS Version: 10.0.19044 OS Platform: Windows RID: win10-x6...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamemrwizard82d1
hostnamegithub.com
expected-hostnamegithub.com
None8e0be80373b724b033cdf8a7b1f78bf5fb6a5d7a2182a9a403aa30894606e390
turbo-cache-controlno-preview
go-importgithub.com/pythonnet/pythonnet git https://github.com/pythonnet/pythonnet.git
octolytics-dimension-user_id6050430
octolytics-dimension-user_loginpythonnet
octolytics-dimension-repository_id14748123
octolytics-dimension-repository_nwopythonnet/pythonnet
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id14748123
octolytics-dimension-repository_network_root_nwopythonnet/pythonnet
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release84d9d5bf3b01412ea10f7c2429cbfc735ccce9ce
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/pythonnet/pythonnet/issues/1693#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpythonnet%2Fpythonnet%2Fissues%2F1693
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpythonnet%2Fpythonnet%2Fissues%2F1693
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=pythonnet%2Fpythonnet
Reloadhttps://github.com/pythonnet/pythonnet/issues/1693
Reloadhttps://github.com/pythonnet/pythonnet/issues/1693
Reloadhttps://github.com/pythonnet/pythonnet/issues/1693
pythonnet https://github.com/pythonnet
pythonnethttps://github.com/pythonnet/pythonnet
Notifications https://github.com/login?return_to=%2Fpythonnet%2Fpythonnet
Fork 770 https://github.com/login?return_to=%2Fpythonnet%2Fpythonnet
Star 5.4k https://github.com/login?return_to=%2Fpythonnet%2Fpythonnet
Code https://github.com/pythonnet/pythonnet
Issues 155 https://github.com/pythonnet/pythonnet/issues
Pull requests 18 https://github.com/pythonnet/pythonnet/pulls
Discussions https://github.com/pythonnet/pythonnet/discussions
Actions https://github.com/pythonnet/pythonnet/actions
Projects 0 https://github.com/pythonnet/pythonnet/projects
Wiki https://github.com/pythonnet/pythonnet/wiki
Security Uh oh! There was an error while loading. Please reload this page. https://github.com/pythonnet/pythonnet/security
Please reload this pagehttps://github.com/pythonnet/pythonnet/issues/1693
Insights https://github.com/pythonnet/pythonnet/pulse
Code https://github.com/pythonnet/pythonnet
Issues https://github.com/pythonnet/pythonnet/issues
Pull requests https://github.com/pythonnet/pythonnet/pulls
Discussions https://github.com/pythonnet/pythonnet/discussions
Actions https://github.com/pythonnet/pythonnet/actions
Projects https://github.com/pythonnet/pythonnet/projects
Wiki https://github.com/pythonnet/pythonnet/wiki
Security https://github.com/pythonnet/pythonnet/security
Insights https://github.com/pythonnet/pythonnet/pulse
New issuehttps://github.com/login?return_to=https://github.com/pythonnet/pythonnet/issues/1693
New issuehttps://github.com/login?return_to=https://github.com/pythonnet/pythonnet/issues/1693
Still cannot create Nullable(None)https://github.com/pythonnet/pythonnet/issues/1693#top
https://github.com/mrwizard82d1
https://github.com/mrwizard82d1
mrwizard82d1https://github.com/mrwizard82d1
on Feb 9, 2022https://github.com/pythonnet/pythonnet/issues/1693#issue-1127953756
#460https://github.com/pythonnet/pythonnet/pull/460
Minimal, Complete, and Verifiable examplehttp://stackoverflow.com/help/mcve
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.