René's URL Explorer Experiment


Title: method overloading - more fun · Issue #190 · pythonnet/pythonnet · GitHub

Open Graph Title: method overloading - more fun · Issue #190 · pythonnet/pythonnet

X Title: method overloading - more fun · Issue #190 · pythonnet/pythonnet

Description: Right now we have if (_methods.Length > 1) as the first line of defense for overloading problems. The reason for this are about 30 failing tests if this condition is removed. Looks like this is an easy fix to these tests, but using prope...

Open Graph Description: Right now we have if (_methods.Length > 1) as the first line of defense for overloading problems. The reason for this are about 30 failing tests if this condition is removed. Looks like this is an ...

X Description: Right now we have if (_methods.Length > 1) as the first line of defense for overloading problems. The reason for this are about 30 failing tests if this condition is removed. Looks like this is ...

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

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"method overloading - more fun","articleBody":"Right now we have `if (_methods.Length \u003e 1)` as the first line of defense for overloading problems. The reason for this are about 30 failing tests if this condition is removed.\n\nLooks like this is an easy fix to these tests, but using proper types in the code. e.g.\n\n`clr.setPreload(0)` should be changed to `clr.setPreload(False)`\n\nfull list here:\n\n``` python\n{ pythonnet_st } patch-8 » c:/python/python27/python.exe src/tests/runtests.py\nAttempting to load Python.Runtime using standard binding rules...\nAttempting to load Python.Runtime from: 'C:\\python\\python27\\lib\\site-packages\\Python.Runtime.dll'...\n..................E.....................................................E.EE........E.E..........E.EEE...E.EEE...........................................E..E..E..E......................E........EE...............................................EEE..E...........E...E...EEE.............................................................\n======================================================================\nERROR: testPreloadVar (test_module.ModuleTests)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n  File \"C:\\Python\\pythonnet\\pythonnet_st\\src\\tests\\test_module.py\", line 59, in testPreloadVar\n    clr.setPreload(0)\nTypeError: No method matches given arguments\n\n======================================================================\nERROR: testExplicitOverloadSelection (test_method.MethodTests)\nCheck explicit overload selection using [] syntax.\n----------------------------------------------------------------------\nTraceback (most recent call last):\n  File \"C:\\Python\\pythonnet\\pythonnet_st\\src\\tests\\test_method.py\", line 525, in testExplicitOverloadSelection\n    value = MethodTest.Overloaded.__overloads__[System.Byte](255)\nTypeError: No method matches given arguments\n\n======================================================================\nERROR: testExplicitSelectionWithOutModifier (test_method.MethodTests)\nCheck explicit overload selection with out modifiers.\n----------------------------------------------------------------------\nTraceback (most recent call last):\n  File \"C:\\Python\\pythonnet\\pythonnet_st\\src\\tests\\test_method.py\", line 477, in testExplicitSelectionWithOutModifier\n    \"hi\", \"there\"\nTypeError: No method matches given arguments\n\n======================================================================\nERROR: testExplicitSelectionWithRefModifier (test_method.MethodTests)\nCheck explicit overload selection with ref modifiers.\n----------------------------------------------------------------------\nTraceback (most recent call last):\n  File \"C:\\Python\\pythonnet\\pythonnet_st\\src\\tests\\test_method.py\", line 497, in testExplicitSelectionWithRefModifier\n    \"hi\", \"there\"\nTypeError: No method matches given arguments\n\n======================================================================\nERROR: testObjectOutParams (test_method.MethodTests)\nTest use of object out-parameters.\n----------------------------------------------------------------------\nTraceback (most recent call last):\n  File \"C:\\Python\\pythonnet\\pythonnet_st\\src\\tests\\test_method.py\", line 370, in testObjectOutParams\n    result = MethodTest.TestObjectOutParams(\"hi\", MethodTest())\nTypeError: No method matches given arguments\n\n======================================================================\nERROR: testObjectRefParams (test_method.MethodTests)\nTest use of object byref parameters.\n----------------------------------------------------------------------\nTraceback (most recent call last):\n  File \"C:\\Python\\pythonnet\\pythonnet_st\\src\\tests\\test_method.py\", line 385, in testObjectRefParams\n    result = MethodTest.TestObjectRefParams(\"hi\", MethodTest())\nTypeError: No method matches given arguments\n\n======================================================================\nERROR: testStringOutParams (test_method.MethodTests)\nTest use of string out-parameters.\n----------------------------------------------------------------------\nTraceback (most recent call last):\n  File \"C:\\Python\\pythonnet\\pythonnet_st\\src\\tests\\test_method.py\", line 310, in testStringOutParams\n    result = MethodTest.TestStringOutParams(\"hi\", \"there\")\nTypeError: No method matches given arguments\n\n======================================================================\nERROR: testStringRefParams (test_method.MethodTests)\nTest use of string byref parameters.\n----------------------------------------------------------------------\nTraceback (most recent call last):\n  File \"C:\\Python\\pythonnet\\pythonnet_st\\src\\tests\\test_method.py\", line 325, in testStringRefParams\n    result = MethodTest.TestStringRefParams(\"hi\", \"there\")\nTypeError: No method matches given arguments\n\n======================================================================\nERROR: testStructOutParams (test_method.MethodTests)\nTest use of struct out-parameters.\n----------------------------------------------------------------------\nTraceback (most recent call last):\n  File \"C:\\Python\\pythonnet\\pythonnet_st\\src\\tests\\test_method.py\", line 400, in testStructOutParams\n    result = MethodTest.TestStructOutParams(\"hi\",System.Guid.NewGuid())\nTypeError: No method matches given arguments\n\n======================================================================\nERROR: testStructRefParams (test_method.MethodTests)\nTest use of struct byref parameters.\n----------------------------------------------------------------------\nTraceback (most recent call last):\n  File \"C:\\Python\\pythonnet\\pythonnet_st\\src\\tests\\test_method.py\", line 415, in testStructRefParams\n    result = MethodTest.TestStructRefParams(\"hi\",System.Guid.NewGuid())\nTypeError: No method matches given arguments\n\n======================================================================\nERROR: testValueOutParams (test_method.MethodTests)\nTest use of value type out-parameters.\n----------------------------------------------------------------------\nTraceback (most recent call last):\n  File \"C:\\Python\\pythonnet\\pythonnet_st\\src\\tests\\test_method.py\", line 340, in testValueOutParams\n    result = MethodTest.TestValueOutParams(\"hi\", 1)\nTypeError: No method matches given arguments\n\n======================================================================\nERROR: testValueRefParams (test_method.MethodTests)\nTest use of value type byref parameters.\n----------------------------------------------------------------------\nTraceback (most recent call last):\n  File \"C:\\Python\\pythonnet\\pythonnet_st\\src\\tests\\test_method.py\", line 355, in testValueRefParams\n    result = MethodTest.TestValueRefParams(\"hi\", 1)\nTypeError: No method matches given arguments\n\n======================================================================\nERROR: testVoidSingleOutParam (test_method.MethodTests)\nTest void method with single out-parameter.\n----------------------------------------------------------------------\nTraceback (most recent call last):\n  File \"C:\\Python\\pythonnet\\pythonnet_st\\src\\tests\\test_method.py\", line 430, in testVoidSingleOutParam\n    result = MethodTest.TestVoidSingleOutParam(9)\nTypeError: No method matches given arguments\n\n======================================================================\nERROR: testVoidSingleRefParam (test_method.MethodTests)\nTest void method with single ref-parameter.\n----------------------------------------------------------------------\nTraceback (most recent call last):\n  File \"C:\\Python\\pythonnet\\pythonnet_st\\src\\tests\\test_method.py\", line 442, in testVoidSingleRefParam\n    result = MethodTest.TestVoidSingleRefParam(9)\nTypeError: No method matches given arguments\n\n======================================================================\nERROR: testGenericMethodTypeHandling (test_generic.GenericTests)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n  File \"C:\\Python\\pythonnet\\pythonnet_st\\src\\tests\\test_generic.py\", line 319, in testGenericMethodTypeHandling\n    self._testGenericMethodByType(System.Byte, 255)\n  File \"C:\\Python\\pythonnet\\pythonnet_st\\src\\tests\\test_generic.py\", line 213, in _testGenericMethodByType\n    result = stype.Overloaded[ptype](value)\nTypeError: No method matches given arguments\n\n======================================================================\nERROR: testGenericTypeBinding (test_generic.GenericTests)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n  File \"C:\\Python\\pythonnet\\pythonnet_st\\src\\tests\\test_generic.py\", line 180, in testGenericTypeBinding\n    self._testGenericWrapperByType(System.Byte, 255)\n  File \"C:\\Python\\pythonnet\\pythonnet_st\\src\\tests\\test_generic.py\", line 161, in _testGenericWrapperByType\n    inst = GenericWrapper[ptype](value)\nTypeError: no constructor matches given arguments\n\n======================================================================\nERROR: testMethodOverloadSelectionWithGenericTypes (test_generic.GenericTests)\nCheck method overload selection using generic types.\n----------------------------------------------------------------------\nTraceback (most recent call last):\n  File \"C:\\Python\\pythonnet\\pythonnet_st\\src\\tests\\test_generic.py\", line 476, in testMethodOverloadSelectionWithGenericTypes\n    input = vtype(255)\nTypeError: no constructor matches given arguments\n\n======================================================================\nERROR: testOverloadSelectionWithArraysOfGenericTypes (test_generic.GenericTests)\nCheck overload selection using arrays of generic types.\n----------------------------------------------------------------------\nTraceback (most recent call last):\n  File \"C:\\Python\\pythonnet\\pythonnet_st\\src\\tests\\test_generic.py\", line 615, in testOverloadSelectionWithArraysOfGenericTypes\n    input = vtype([gtype(255), gtype(255)])\nTypeError: no constructor matches given arguments\n\n======================================================================\nERROR: testBasicSubclass (test_class.ClassTests)\nTest basic subclass of a managed class.\n----------------------------------------------------------------------\nTraceback (most recent call last):\n  File \"C:\\Python\\pythonnet\\pythonnet_st\\src\\tests\\test_class.py\", line 95, in testBasicSubclass\n    table.set_Item('one', 'one')\nTypeError: No method matches given arguments\n\n======================================================================\nERROR: testOverrideGetItem (test_class.ClassTests)\nTest managed subclass overriding __getitem__.\n----------------------------------------------------------------------\nTraceback (most recent call last):\n  File \"C:\\Python\\pythonnet\\pythonnet_st\\src\\tests\\test_class.py\", line 196, in testOverrideGetItem\n    table['one'] = 'one'\nTypeError: No method matches given arguments\n\n======================================================================\nERROR: testOverrideSetItem (test_class.ClassTests)\nTest managed subclass overriding __setitem__.\n----------------------------------------------------------------------\nTraceback (most recent call last):\n  File \"C:\\Python\\pythonnet\\pythonnet_st\\src\\tests\\test_class.py\", line 217, in testOverrideSetItem\n    table['one'] = 'one'\n  File \"C:\\Python\\pythonnet\\pythonnet_st\\src\\tests\\test_class.py\", line 214, in __setitem__\n    Hashtable.__setitem__(self, key, value)\nTypeError: No method matches given arguments\n\n======================================================================\nERROR: testBooleanIndexer (test_indexer.IndexerTests)\nTest boolean indexers.\n----------------------------------------------------------------------\nTraceback (most recent call last):\n  File \"C:\\Python\\pythonnet\\pythonnet_st\\src\\tests\\test_indexer.py\", line 95, in testBooleanIndexer\n    self.assertTrue(object[1] == None)\nTypeError: No method matches given arguments\n\n======================================================================\nERROR: testByteIndexer (test_indexer.IndexerTests)\nTest byte indexers.\n----------------------------------------------------------------------\nTraceback (most recent call last):\n  File \"C:\\Python\\pythonnet\\pythonnet_st\\src\\tests\\test_indexer.py\", line 116, in testByteIndexer\n    self.assertTrue(object[max] == None)\nTypeError: No method matches given arguments\n\n======================================================================\nERROR: testCharIndexer (test_indexer.IndexerTests)\nTest char indexers.\n----------------------------------------------------------------------\nTraceback (most recent call last):\n  File \"C:\\Python\\pythonnet\\pythonnet_st\\src\\tests\\test_indexer.py\", line 170, in testCharIndexer\n    self.assertTrue(object[max] == None)\nTypeError: No method matches given arguments\n\n======================================================================\nERROR: testEnumIndexer (test_indexer.IndexerTests)\nTest enum indexers.\n----------------------------------------------------------------------\nTraceback (most recent call last):\n  File \"C:\\Python\\pythonnet\\pythonnet_st\\src\\tests\\test_indexer.py\", line 474, in testEnumIndexer\n    self.assertTrue(object[key] == None)\nTypeError: No method matches given arguments\n\n======================================================================\nERROR: testObjectIndexer (test_indexer.IndexerTests)\nTest object indexers.\n----------------------------------------------------------------------Load clr import hook\nPython.Test.SubclassConstructorTest\n\nTraceback (most recent call last):\n  File \"C:\\Python\\pythonnet\\pythonnet_st\\src\\tests\\test_indexer.py\", line 506, in testObjectIndexer\n    self.assertTrue(object[\"spam\"] == None)\nTypeError: No method matches given arguments\n\n======================================================================\nERROR: testSByteIndexer (test_indexer.IndexerTests)\nTest sbyte indexers.\n----------------------------------------------------------------------\nTraceback (most recent call last):\n  File \"C:\\Python\\pythonnet\\pythonnet_st\\src\\tests\\test_indexer.py\", line 143, in testSByteIndexer\n    self.assertTrue(object[max] == None)\nTypeError: No method matches given arguments\n\n======================================================================\nERROR: testUInt16Indexer (test_indexer.IndexerTests)\nTest UInt16 indexers.\n----------------------------------------------------------------------\nTraceback (most recent call last):\n  File \"C:\\Python\\pythonnet\\pythonnet_st\\src\\tests\\test_indexer.py\", line 278, in testUInt16Indexer\n    self.assertTrue(object[max] == None)\nTypeError: No method matches given arguments\n\n======================================================================\nERROR: testUInt32Indexer (test_indexer.IndexerTests)\nTest UInt32 indexers.\n----------------------------------------------------------------------\nTraceback (most recent call last):\n  File \"C:\\Python\\pythonnet\\pythonnet_st\\src\\tests\\test_indexer.py\", line 305, in testUInt32Indexer\n    self.assertTrue(object[max] == None)\nTypeError: No method matches given arguments\n\n======================================================================\nERROR: testUInt64Indexer (test_indexer.IndexerTests)\nTest UInt64 indexers.\n----------------------------------------------------------------------\nTraceback (most recent call last):\n  File \"C:\\Python\\pythonnet\\pythonnet_st\\src\\tests\\test_indexer.py\", line 332, in testUInt64Indexer\n    self.assertTrue(object[max] == None)\nTypeError: No method matches given arguments\n\n----------------------------------------------------------------------\nRan 332 tests in 2.478s\n\nFAILED (errors=30)\nTraceback (most recent call last):\n  File \"src/tests/runtests.py\", line 70, in \u003cmodule\u003e\n    main(1)\n  File \"src/tests/runtests.py\", line 67, in main\n    raise Exception(\"Tests failed\")\nException: Tests failed\n\n```\n","author":{"url":"https://github.com/den-run-ai","@type":"Person","name":"den-run-ai"},"datePublished":"2016-03-17T07:21:45.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":1},"url":"https://github.com/190/pythonnet/issues/190"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:7df39203-358f-312f-e55f-15021999952b
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-id8F86:26D9B9:34AA574:498D467:69711BAF
html-safe-nonce1e099dfc2192cc5dafe7f063b7d5d999cdc3f775187c865b73d32b0cd3081994
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI4Rjg2OjI2RDlCOTozNEFBNTc0OjQ5OEQ0Njc6Njk3MTFCQUYiLCJ2aXNpdG9yX2lkIjoiNDk5Mzc3Mjk5MzgxNzY4MDgxNSIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmace793f785546eb739b6ac8d4d7a6995cac7cdf48081a871376b674ecd77943d99
hovercard-subject-tagissue:141501077
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/190/issue_layout
twitter:imagehttps://opengraph.githubassets.com/0c30b89fd4649f96759115f2bb8e13445f06f1e16830261bb4af8fbda7cc6b27/pythonnet/pythonnet/issues/190
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/0c30b89fd4649f96759115f2bb8e13445f06f1e16830261bb4af8fbda7cc6b27/pythonnet/pythonnet/issues/190
og:image:altRight now we have if (_methods.Length > 1) as the first line of defense for overloading problems. The reason for this are about 30 failing tests if this condition is removed. Looks like this is an ...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernameden-run-ai
hostnamegithub.com
expected-hostnamegithub.com
None73ca43ac10b0f114fadc2d2cf702bc0c6453174aa5f9dad3a1d131b428870c6d
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
release8c16e50bde10edd19f5772e9b3804df6d7bf9bfe
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/pythonnet/pythonnet/issues/190#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpythonnet%2Fpythonnet%2Fissues%2F190
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%2F190
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/190
Reloadhttps://github.com/pythonnet/pythonnet/issues/190
Reloadhttps://github.com/pythonnet/pythonnet/issues/190
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/190
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/190
New issuehttps://github.com/login?return_to=https://github.com/pythonnet/pythonnet/issues/190
method overloading - more funhttps://github.com/pythonnet/pythonnet/issues/190#top
https://github.com/den-run-ai
https://github.com/den-run-ai
den-run-aihttps://github.com/den-run-ai
on Mar 17, 2016https://github.com/pythonnet/pythonnet/issues/190#issue-141501077
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.