René's URL Explorer Experiment


Title: `random_combination_with_replacement` recipe has misleading docstring · Issue #102653 · python/cpython · GitHub

Open Graph Title: `random_combination_with_replacement` recipe has misleading docstring · Issue #102653 · python/cpython

X Title: `random_combination_with_replacement` recipe has misleading docstring · Issue #102653 · python/cpython

Description: Documentation The random module has four recipes that are supposed to "efficiently make random selections from the combinatoric iterators in the itertools module". And their docstrings all say "Random selection from [iterator]". Both sug...

Open Graph Description: Documentation The random module has four recipes that are supposed to "efficiently make random selections from the combinatoric iterators in the itertools module". And their docstrings all say "Ran...

X Description: Documentation The random module has four recipes that are supposed to "efficiently make random selections from the combinatoric iterators in the itertools module". And their docstrings al...

Opengraph URL: https://github.com/python/cpython/issues/102653

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"`random_combination_with_replacement` recipe has misleading docstring","articleBody":"# Documentation\r\n\r\nThe `random` module has four [recipes](https://docs.python.org/3/library/random.html#recipes) that are supposed to *\"efficiently make random selections from the combinatoric iterators in the itertools module\"*. And their docstrings all say *\"Random selection from [iterator]\"*. Both suggest they're equivalent to `random.choice(list(iterator))`, just efficiently.\r\n\r\nFor example, `itertools.combinations_with_replacement([0, 1], r=4)` produces these five combinations:\r\n```\r\n(0, 0, 0, 0)\r\n(0, 0, 0, 1)\r\n(0, 0, 1, 1)\r\n(0, 1, 1, 1)\r\n(1, 1, 1, 1)\r\n```\r\nSo `random.choice(list(iterator))` would return one of those five with 20% probability each.\r\n\r\nBut the `random_combination_with_replacement` recipe instead produces these probabilities:\r\n```\r\n(0, 0, 0, 0)  6.25%\r\n(0, 0, 0, 1) 25.00%\r\n(0, 0, 1, 1) 37.50%\r\n(0, 1, 1, 1) 25.00%\r\n(1, 1, 1, 1)  6.25%\r\n```\r\n\r\nHere's an implementation that *is* equivalent to `random.choice(list(iterator))`:\r\n\r\n```python\r\ndef random_combination_with_replacement(iterable, r):\r\n    \"Random selection from itertools.combinations_with_replacement(iterable, r)\"\r\n    pool = tuple(iterable)\r\n    n = len(pool)\r\n    indices = sorted(random.sample(range(n+r-1), k=r))\r\n    return tuple(pool[i-j] for j, i in enumerate(indices))\r\n```\r\n\r\n---\r\n\r\nOne can view the combinations as the result of actually simulating r random draws with replacement, where the multiset `{0,0,1,1}` indeed occurs more often, namely as `0011`, `0101`, `0110`, etc. But that is not the only valid view and isn't the view suggested by the documentation (as my first paragraph argued). Though if that view and the bias is the intention, then I suggest its documentation should mention the bias.\r\n\r\n\u003cdetails\u003e\u003csummary\u003eTest code\u003c/summary\u003e\r\n\r\n[Attempt This Online!](https://ato.pxeger.com/run?1=1ZXNbtQwEMc5cfBTWEVoE5GELqoQqrSn3vfAtaqs1Jmwbv2F7QghxJNw6QUeiqdh_JH9EIvY9oCET7E985-Znyf2tx_2c9gY_fDwfQpj--7n82dCWeMCdb0ejCJlJgK4YIz0ZHRGUW6kBB6E0Z4WiyszaTQiJJr2txLoil6fN3R5Qxx-XhBCXrTtToi2Rwch1gkdqsXWcFGT0TgMqW6p0DuBLq4I3acs2CcRNsyBlT0HBSgwp9FQV18SiiMLR6-6JJNqSYYBIxxLZoCxkGB74X6LxqISm5WOxD57n0Soh8JtF_uxxZwlwW3WqyeJJA0HYXK61NfxjREcKil8MUX1eibFJ-dQo9iiJxcW6BNI_Qs2Fr2QS5ishO12LlnjugRdRZO8IvSAZXtc99jGMFQHOHycfoBK1w29X0Uee-BygCh1LW5obFKROjQrzuisM9Z4GP7E7vQmy0q9_G8Y-l5F94LwlWuXf8PY3mWQd01mCXpSsRUxh0J1xnpllO2d8EaTdD-Mk-bR49F_a3OKy0lG2wPav2_qve-YY8eY7hUwljfWCG15Hkea8hD_6HKXJvuDs0lsWCkTma4LyfmCbPDY4WPcLweBeh0KKF_VpVMOb0J0WHyJPq_Xl2-7Ny-_Lur8EJT3YH4XfgE)\r\n\r\n```python\r\nimport random\r\nimport itertools\r\nfrom collections import Counter\r\n\r\niterable = [0, 1]\r\nr = 4\r\n\r\n\r\n#-- itertools ----------------------\r\n\r\nprint('itertools')\r\nfor comb in itertools.combinations_with_replacement(iterable, r):\r\n    print(comb)\r\n\r\n\r\n#-- from iterator ------------------\r\n\r\ndef random_combination_with_replacement_from_iterator(iterable, r):\r\n    \"Random selection from itertools.combinations_with_replacement(iterable, r)\"\r\n    iterator = itertools.combinations_with_replacement(iterable, r)\r\n    return random.choice(list(iterator))\r\n\r\n\r\n#-- current random recipe ----------\r\n\r\ndef random_combination_with_replacement(iterable, r):\r\n    \"Random selection from itertools.combinations_with_replacement(iterable, r)\"\r\n    pool = tuple(iterable)\r\n    n = len(pool)\r\n    indices = sorted(random.choices(range(n), k=r))\r\n    return tuple(pool[i] for i in indices)\r\n\r\n\r\n#-- proposed random recipe ---------\r\n\r\ndef random_combination_with_replacement_proposal(iterable, r):\r\n    \"Random selection from itertools.combinations_with_replacement(iterable, r)\"\r\n    pool = tuple(iterable)\r\n    n = len(pool)\r\n    indices = sorted(random.sample(range(n+r-1), k=r))\r\n    return tuple(pool[i-j] for j, i in enumerate(indices))\r\n\r\n\r\n#-- Comparison\r\n\r\nfor func in random_combination_with_replacement_from_iterator, random_combination_with_replacement, random_combination_with_replacement_proposal:\r\n    print()\r\n    print(func.__name__)\r\n    N = 100000\r\n    ctr = Counter(func(iterable, r) for _ in range(N))\r\n    for comb, freq in sorted(ctr.items()):\r\n        print(comb, f'{freq/N:6.2%}')\r\n```\r\n\r\n\u003c/details\u003e\r\n\r\n\u003cdetails\u003e\u003csummary\u003eTest results\u003c/summary\u003e\r\n\r\n```\r\nitertools\r\n(0, 0, 0, 0)\r\n(0, 0, 0, 1)\r\n(0, 0, 1, 1)\r\n(0, 1, 1, 1)\r\n(1, 1, 1, 1)\r\n\r\nrandom_combination_with_replacement_from_iterator\r\n(0, 0, 0, 0) 19.89%\r\n(0, 0, 0, 1) 20.08%\r\n(0, 0, 1, 1) 20.01%\r\n(0, 1, 1, 1) 19.88%\r\n(1, 1, 1, 1) 20.14%\r\n\r\nrandom_combination_with_replacement\r\n(0, 0, 0, 0)  6.14%\r\n(0, 0, 0, 1) 24.98%\r\n(0, 0, 1, 1) 37.71%\r\n(0, 1, 1, 1) 25.04%\r\n(1, 1, 1, 1)  6.13%\r\n\r\nrandom_combination_with_replacement_proposal\r\n(0, 0, 0, 0) 20.17%\r\n(0, 0, 0, 1) 19.82%\r\n(0, 0, 1, 1) 20.18%\r\n(0, 1, 1, 1) 19.88%\r\n(1, 1, 1, 1) 19.95%\r\n```\r\n\r\n\u003c/details\u003e\n\n\u003c!-- gh-linked-prs --\u003e\n### Linked PRs\n* gh-102742\n* gh-102754\n\u003c!-- /gh-linked-prs --\u003e\n","author":{"url":"https://github.com/pochmann","@type":"Person","name":"pochmann"},"datePublished":"2023-03-13T19:27:42.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":7},"url":"https://github.com/102653/cpython/issues/102653"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:d03b4e1e-a5b2-d346-a904-f08f928bdd7d
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idD5F2:14EC01:3BBBB:54E31:696A0BB4
html-safe-nonce9ea5020639bf2af6509daec3448028b02d00b763ad4501e70d326f174c3d4f54
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJENUYyOjE0RUMwMTozQkJCQjo1NEUzMTo2OTZBMEJCNCIsInZpc2l0b3JfaWQiOiIyMjkyMjk0NzQyODA1NDQ5NjUyIiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0=
visitor-hmac69f34762c4d5054ea2b4134ea4a80c7b0cf6e2fb6171ce8d64fe1cc7cae64a69
hovercard-subject-tagissue:1622118323
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/python/cpython/102653/issue_layout
twitter:imagehttps://opengraph.githubassets.com/8600ec77e3f1b1f6b28bb9d38cf2b459ca61056936271be3a7db6e26d8995c42/python/cpython/issues/102653
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/8600ec77e3f1b1f6b28bb9d38cf2b459ca61056936271be3a7db6e26d8995c42/python/cpython/issues/102653
og:image:altDocumentation The random module has four recipes that are supposed to "efficiently make random selections from the combinatoric iterators in the itertools module". And their docstrings all say "Ran...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamepochmann
hostnamegithub.com
expected-hostnamegithub.com
None699227a00bbb7fe1eec276d2ae1c3a93068bc5ba483bd9dc4b2a27a8f4f2f595
turbo-cache-controlno-preview
go-importgithub.com/python/cpython git https://github.com/python/cpython.git
octolytics-dimension-user_id1525981
octolytics-dimension-user_loginpython
octolytics-dimension-repository_id81598961
octolytics-dimension-repository_nwopython/cpython
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id81598961
octolytics-dimension-repository_network_root_nwopython/cpython
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
release7266b2d935baa1c6474b16dd9feaa5ca30607261
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/python/cpython/issues/102653#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpython%2Fcpython%2Fissues%2F102653
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%2Fpython%2Fcpython%2Fissues%2F102653
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=python%2Fcpython
Reloadhttps://github.com/python/cpython/issues/102653
Reloadhttps://github.com/python/cpython/issues/102653
Reloadhttps://github.com/python/cpython/issues/102653
python https://github.com/python
cpythonhttps://github.com/python/cpython
Please reload this pagehttps://github.com/python/cpython/issues/102653
Notifications https://github.com/login?return_to=%2Fpython%2Fcpython
Fork 33.9k https://github.com/login?return_to=%2Fpython%2Fcpython
Star 71.1k https://github.com/login?return_to=%2Fpython%2Fcpython
Code https://github.com/python/cpython
Issues 5k+ https://github.com/python/cpython/issues
Pull requests 2.1k https://github.com/python/cpython/pulls
Actions https://github.com/python/cpython/actions
Projects 31 https://github.com/python/cpython/projects
Security Uh oh! There was an error while loading. Please reload this page. https://github.com/python/cpython/security
Please reload this pagehttps://github.com/python/cpython/issues/102653
Insights https://github.com/python/cpython/pulse
Code https://github.com/python/cpython
Issues https://github.com/python/cpython/issues
Pull requests https://github.com/python/cpython/pulls
Actions https://github.com/python/cpython/actions
Projects https://github.com/python/cpython/projects
Security https://github.com/python/cpython/security
Insights https://github.com/python/cpython/pulse
New issuehttps://github.com/login?return_to=https://github.com/python/cpython/issues/102653
New issuehttps://github.com/login?return_to=https://github.com/python/cpython/issues/102653
random_combination_with_replacement recipe has misleading docstringhttps://github.com/python/cpython/issues/102653#top
https://github.com/rhettinger
3.11only security fixeshttps://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%223.11%22
3.12only security fixeshttps://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%223.12%22
docsDocumentation in the Doc dirhttps://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%22docs%22
https://github.com/pochmann
https://github.com/pochmann
pochmannhttps://github.com/pochmann
on Mar 13, 2023https://github.com/python/cpython/issues/102653#issue-1622118323
recipeshttps://docs.python.org/3/library/random.html#recipes
Attempt This Online!https://ato.pxeger.com/run?1=1ZXNbtQwEMc5cfBTWEVoE5GELqoQqrSn3vfAtaqs1Jmwbv2F7QghxJNw6QUeiqdh_JH9EIvY9oCET7E985-Znyf2tx_2c9gY_fDwfQpj--7n82dCWeMCdb0ejCJlJgK4YIz0ZHRGUW6kBB6E0Z4WiyszaTQiJJr2txLoil6fN3R5Qxx-XhBCXrTtToi2Rwch1gkdqsXWcFGT0TgMqW6p0DuBLq4I3acs2CcRNsyBlT0HBSgwp9FQV18SiiMLR6-6JJNqSYYBIxxLZoCxkGB74X6LxqISm5WOxD57n0Soh8JtF_uxxZwlwW3WqyeJJA0HYXK61NfxjREcKil8MUX1eibFJ-dQo9iiJxcW6BNI_Qs2Fr2QS5ishO12LlnjugRdRZO8IvSAZXtc99jGMFQHOHycfoBK1w29X0Uee-BygCh1LW5obFKROjQrzuisM9Z4GP7E7vQmy0q9_G8Y-l5F94LwlWuXf8PY3mWQd01mCXpSsRUxh0J1xnpllO2d8EaTdD-Mk-bR49F_a3OKy0lG2wPav2_qve-YY8eY7hUwljfWCG15Hkea8hD_6HKXJvuDs0lsWCkTma4LyfmCbPDY4WPcLweBeh0KKF_VpVMOb0J0WHyJPq_Xl2-7Ny-_Lur8EJT3YH4XfgE
GH-102653: Make recipe docstring show the correct distribution #102742https://github.com/python/cpython/pull/102742
[3.11] GH-102653: Make recipe docstring show the correct distribution (GH-102742) #102754https://github.com/python/cpython/pull/102754
rhettingerhttps://github.com/rhettinger
3.11only security fixeshttps://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%223.11%22
3.12only security fixeshttps://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%223.12%22
docsDocumentation in the Doc dirhttps://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%22docs%22
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.