René's URL Explorer Experiment


Title: Rename default branch by tacaswell · Pull Request #21371 · matplotlib/matplotlib · GitHub

Open Graph Title: Rename default branch by tacaswell · Pull Request #21371 · matplotlib/matplotlib

X Title: Rename default branch by tacaswell · Pull Request #21371 · matplotlib/matplotlib

Description: PR Summary The changes needed to implement https://discourse.matplotlib.org/t/minor-re-writing-of-history-and-moving-from-master-to-main-for-default-branch/22354/10 We are not able to remove every instance of 'master' from the code base (see the details for what is left). There are: a parameter named master_transform (this can not be changed without a deprecation cycle) usages in agg (definitly should not touch Agg !) branch names from other projects (do not want to break links) old branch names in whats_new when quoting PR titles (try to keep some parts of history consistent) in a user name (the name is what it is) in code that uses the tk or osx APIs (pinned by external APIs) in the tri code (do not want to touch c-code unnecessarily) Details 18:27:55 $ ack 'master[^_]' LICENSE/LICENSE_SOLARIZED 1:https://github.com/altercation/solarized/blob/master/LICENSE doc/devel/MEP/MEP10.rst 48:`_: doc/devel/MEP/MEP28.rst 230:The source code (GitHub master as of 2016-10-17) was inspected for doc/devel/gitwash/git_links.inc 49:.. _deleting main on github: https://matthew-brett.github.io/pydagogue/gh_delete_master.html doc/devel/gitwash/configure_git.rst 154: * d304a73 - (origin/placeholder, placeholder) Merge pull request #48 from hhuuggoo/master (2 weeks ago) [Jonathan Terhorst] 160: * 376adbd - Merge pull request #46 from terhorst/master (2 weeks ago) [Jonathan Terhorst] 166: | * 956fbab - Merge remote-tracking branch 'upstream/master' (3 weeks ago) [Jonathan Terhorst] doc/devel/README.txt 8:The script is hosted at https://raw.githubusercontent.com/matthew-brett/gitwash/master/gitwash_dumper.py. doc/devel/documenting_mpl.rst 126:`_ is 281:`intersphinx `_: 993:.. _inheritance-diagram: https://www.sphinx-doc.org/en/master/usage/extensions/inheritance.html 1010:.. _documentation: https://www.sphinx-doc.org/en/master/contents.html doc/users/prev_whats_new/github_stats_3.0.0.rst 1078:* :ghpull:`10523`: The current master branch is now python 3 only. 1169:* :ghissue:`11426`: nbagg broken on master. 'Path' is not defined... doc/users/prev_whats_new/github_stats_3.0.1.rst 198:* :ghissue:`12352`: TeX rendering broken on master with windows doc/users/prev_whats_new/github_stats_3.0.2.rst 425:* :ghissue:`12352`: TeX rendering broken on master with windows doc/users/prev_whats_new/github_stats_3.2.2.rst 160:* :ghissue:`17033`: Using a ``TextBox`` in current master produces a seemingly unrelated warning. doc/users/credits.rst 1035:ugurthemaster, doc/users/dflt_style_changes.rst 42:`__ doc/resources/index.rst 13: `_ doc/conf.py 214:# The master toctree document. examples/misc/ftface_props.py 60: 'Multiple masters', examples/user_interfaces/embedding_in_tk_sgskip.py 29:canvas = FigureCanvasTkAgg(fig, master=root) # A tk.DrawingArea. 40:button_quit = tkinter.Button(master=root, text="Quit", command=root.quit) examples/user_interfaces/web_application_server_sgskip.py 47:# `flask command-line tool `_ lib/matplotlib/backends/_backend_tk.py 167: def __init__(self, figure=None, master=None, resize_callback=None): 173: master=master, background="white", 176: master=self._tkcanvas, width=w, height=h) 239: master=self._tkcanvas, width=int(width), height=int(height)) 425: window_dpi = tk.IntVar(master=window, value=96, 523: # Avoid using self.window (prefer self.canvas.get_tk_widget().master), 527: tk.Frame.__init__(self, master=window, borderwidth=2, 551: label = tk.Label(master=self, font=self._label_font, 555: self.message = tk.StringVar(master=self) 556: self._message_label = tk.Label(master=self, font=self._label_font, 642: image = ImageTk.PhotoImage(im.resize((size, size)), master=self) 648: b = tk.Button(master=self, text=text, command=command) 655: var = tk.IntVar(master=self) 657: master=self, text=text, command=command, 671: s = tk.Frame(master=self, height='18p', relief=tk.RIDGE, bg='DarkGray') 695: master=self.canvas.get_tk_widget().master, 805: tk.Frame.__init__(self, master=window, 809: self._message = tk.StringVar(master=self) 810: self._message_label = tk.Label(master=self, font=self._label_font, 834: frame = tk.Frame(master=self, borderwidth=0) 887: canvas = type(self.canvas)(toolfig, master=self.window) 905: dialog.done = lambda num: dialog.frame.master.withdraw() 933: icon_img = tk.PhotoImage(file=icon_fname, master=window) 940: canvas = cls.FigureCanvas(figure, master=window) lib/matplotlib/backends/qt_compat.py 40:# (https://github.com/enthought/pyface/blob/master/pyface/qt/__init__.py) lib/matplotlib/sphinxext/mathmpl.py 8: `__ lib/matplotlib/tests/tinypages/index.rst 1:.. tinypages documentation master file, created by lib/matplotlib/tests/test_mlab.py 869:# https://github.com/scipy/scipy/blob/master/scipy/stats/tests/test_kdeoth.py lib/matplotlib/tri/trirefine.py 227: # edge_apexes); we then extract only the masters to avoid overlaps. 228: # The so-called 'master' is the triangle with biggest index 231: # For slave and master we will identify the apex pointing to the edge 236: mask_masters = (edge_elems > edge_neighbors) 238: # Identifying the "masters" and adding to refi_x, refi_y vec 239: masters = edge_elems[mask_masters] 240: apex_masters = edge_apexes[mask_masters] 241: x_add = (x[triangles[masters, apex_masters]] + 242: x[triangles[masters, (apex_masters+1) % 3]]) * 0.5 243: y_add = (y[triangles[masters, apex_masters]] + 244: y[triangles[masters, (apex_masters+1) % 3]]) * 0.5 256: # If ielem is the apex master: simple count, given the way refi_x was 263: mask_st_loc = (imid == apex_masters) 264: n_masters_loc = np.sum(mask_st_loc) 265: elem_masters_loc = masters[mask_st_loc] 266: new_pt_midside[:, imid][elem_masters_loc] = np.arange( 267: n_masters_loc, dtype=np.int32) + cum_sum 268: cum_sum += n_masters_loc 271: # for each slave element we identify the master and then the inode 272: # once slave_masters is identified, slave_masters_apex is such that: 273: # neighbors[slaves_masters, slave_masters_apex] == slaves 274: mask_slaves = np.logical_not(mask_masters) 276: slaves_masters = edge_neighbors[mask_slaves] 277: diff_table = np.abs(neighbors[slaves_masters, :] - 279: slave_masters_apex = np.argmin(diff_table, axis=1) 282: slaves_masters, slave_masters_apex] lib/matplotlib/backend_bases.py 330: combinations, given a master transform, a list of paths and lib/matplotlib/mlab.py 895: # from scipy: https://github.com/scipy/scipy/blob/master/scipy/stats/kde.py src/_macosx.m 227:- (ToolWindow*)initWithContentRect:(NSRect)rect master:(NSWindow*)window; 228:- (void)masterCloses:(NSNotification*)notification; 1006: PyObject* master = PyObject_GetAttrString(toolbar, "canvas"); 1007: if (master==nil) 1017: Py_DECREF(master); 1028: Py_DECREF(master); 1038: Py_DECREF(master); 1048: Py_DECREF(master); 1053: NSWindow* mw = [((FigureCanvas*)master)->view window]; 1054: Py_DECREF(master); 1061: master: mw]; 1522:- (ToolWindow*)initWithContentRect:(NSRect)rect master:(NSWindow*)window 1533: selector: @selector(masterCloses:) 1539:- (void)masterCloses:(NSNotification*)notification src/_tkmini.h 62: * through Tck / Tk master as of 21 May 2016 .circleci/config.yml 73: wget -nc https://github.com/google/fonts/blob/master/ofl/felipa/Felipa-Regular.ttf?raw=true -O ~/.local/share/fonts/Felipa-Regular.ttf || true .github/workflows/reviewdog.yml 23: https://github.com/reviewdog/reviewdog/raw/master/install.sh | \ extern/agg24-svn/include/agg_scanline_boolean_algebra.h 1162: // Here "sg1" is master, "sg2" is slave. 1194: // Synchronize "slave" with "master" 1219: // Advance the "master" tools/gh_api.py 64: "note_url": "https://github.com/ipython/ipython/tree/master/tools",

Open Graph Description: PR Summary The changes needed to implement https://discourse.matplotlib.org/t/minor-re-writing-of-history-and-moving-from-master-to-main-for-default-branch/22354/10 We are not able to remove every ...

X Description: PR Summary The changes needed to implement https://discourse.matplotlib.org/t/minor-re-writing-of-history-and-moving-from-master-to-main-for-default-branch/22354/10 We are not able to remove every ...

Opengraph URL: https://github.com/matplotlib/matplotlib/pull/21371

X: @github

direct link

Domain: github.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:09a55449-6e0c-ecff-8cc8-f0eaecd7cc8f
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-id9540:25B9DF:6C2FD2:9BC7B8:6A63768E
html-safe-noncef5678cb81b8aea00baae0dd14255bc9671a50152fbfdf28eb8512aa617fd5431
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI5NTQwOjI1QjlERjo2QzJGRDI6OUJDN0I4OjZBNjM3NjhFIiwidmlzaXRvcl9pZCI6Ijg5MzU2OTEwNjE4MTk1Njk4MDYiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmac2df74f00a45435e3691eeb8906697f2555941748836a93c4167e1f143a6eea4c
hovercard-subject-tagpull_request:759535660
github-keyboard-shortcutsrepository,pull-request-list,pull-request-conversation,pull-request-files-changed,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///pull_requests/show/files
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/matplotlib/matplotlib/pull/21371/files
twitter:imagehttps://avatars.githubusercontent.com/u/199813?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/u/199813?s=400&v=4
og:image:altPR Summary The changes needed to implement https://discourse.matplotlib.org/t/minor-re-writing-of-history-and-moving-from-master-to-main-for-default-branch/22354/10 We are not able to remove every ...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
None15e78334bb345f3864e70c5a376ed0383374123629b9e3022398d9431f6cd8bf
turbo-cache-controlno-preview
diff-viewunified
go-importgithub.com/matplotlib/matplotlib git https://github.com/matplotlib/matplotlib.git
octolytics-dimension-user_id215947
octolytics-dimension-user_loginmatplotlib
octolytics-dimension-repository_id1385122
octolytics-dimension-repository_nwomatplotlib/matplotlib
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id1385122
octolytics-dimension-repository_network_root_nwomatplotlib/matplotlib
turbo-body-classeslogged-out env-production page-responsive full-width
disable-turbotrue
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release51da2d8d0a841a1393b806a6559fa9ad757e1666
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/matplotlib/matplotlib/pull/21371/files#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmatplotlib%2Fmatplotlib%2Fpull%2F21371%2Ffiles
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
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
Code QualityEnforce quality at mergehttps://github.com/features/code-quality
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
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/open-source/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/open-source/accelerator
GitHub Starshttps://stars.github.com
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/enterprise/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%2Fmatplotlib%2Fmatplotlib%2Fpull%2F21371%2Ffiles
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%2Fpull_requests%2Fshow%2Ffiles&source=header-repo&source_repo=matplotlib%2Fmatplotlib
Reloadhttps://github.com/matplotlib/matplotlib/pull/21371/files
Reloadhttps://github.com/matplotlib/matplotlib/pull/21371/files
Reloadhttps://github.com/matplotlib/matplotlib/pull/21371/files
Please reload this pagehttps://github.com/matplotlib/matplotlib/pull/21371/files
matplotlib https://github.com/matplotlib
matplotlibhttps://github.com/matplotlib/matplotlib
Please reload this pagehttps://github.com/matplotlib/matplotlib/pull/21371/files
Notifications https://github.com/login?return_to=%2Fmatplotlib%2Fmatplotlib
Fork 8.4k https://github.com/login?return_to=%2Fmatplotlib%2Fmatplotlib
Star 23k https://github.com/login?return_to=%2Fmatplotlib%2Fmatplotlib
Code https://github.com/matplotlib/matplotlib
Issues 1.1k https://github.com/matplotlib/matplotlib/issues
Pull requests 418 https://github.com/matplotlib/matplotlib/pulls
Actions https://github.com/matplotlib/matplotlib/actions
Projects https://github.com/matplotlib/matplotlib/projects
Wiki https://github.com/matplotlib/matplotlib/wiki
Security and quality 0 https://github.com/matplotlib/matplotlib/security
Insights https://github.com/matplotlib/matplotlib/pulse
Code https://github.com/matplotlib/matplotlib
Issues https://github.com/matplotlib/matplotlib/issues
Pull requests https://github.com/matplotlib/matplotlib/pulls
Actions https://github.com/matplotlib/matplotlib/actions
Projects https://github.com/matplotlib/matplotlib/projects
Wiki https://github.com/matplotlib/matplotlib/wiki
Security and quality https://github.com/matplotlib/matplotlib/security
Insights https://github.com/matplotlib/matplotlib/pulse
Sign up for GitHub https://github.com/signup?return_to=%2Fmatplotlib%2Fmatplotlib%2Fissues%2Fnew%2Fchoose
terms of servicehttps://docs.github.com/terms
privacy statementhttps://docs.github.com/privacy
Sign inhttps://github.com/login?return_to=%2Fmatplotlib%2Fmatplotlib%2Fissues%2Fnew%2Fchoose
QuLogichttps://github.com/QuLogic
matplotlib:mainhttps://github.com/matplotlib/matplotlib/tree/main
tacaswell:rename_default_branchhttps://github.com/tacaswell/matplotlib/tree/rename_default_branch
Conversation 8 https://github.com/matplotlib/matplotlib/pull/21371
Commits 3 https://github.com/matplotlib/matplotlib/pull/21371/commits
Checks 0 https://github.com/matplotlib/matplotlib/pull/21371/checks
Files changed https://github.com/matplotlib/matplotlib/pull/21371/files
Please reload this pagehttps://github.com/matplotlib/matplotlib/pull/21371/files
Rename default branch https://github.com/matplotlib/matplotlib/pull/21371/files#top
Show all changes 3 commits https://github.com/matplotlib/matplotlib/pull/21371/files
84512bd MNT: rename master -> main in docs and CI tacaswell Oct 15, 2021 https://github.com/matplotlib/matplotlib/pull/21371/commits/84512bd4f88342e3b4ea4dc284eb476a2f9fda21
c3a1713 MNT: remove a few un-needed usages of "master" tacaswell Oct 15, 2021 https://github.com/matplotlib/matplotlib/pull/21371/commits/c3a1713ad58ccba87bb395e96e211bbfe7b1e3c3
3fcb595 DOC: improve language tacaswell Oct 19, 2021 https://github.com/matplotlib/matplotlib/pull/21371/commits/3fcb595c57fdef0bf46cc789f76e08db17705f12
Clear filters https://github.com/matplotlib/matplotlib/pull/21371/files
Please reload this pagehttps://github.com/matplotlib/matplotlib/pull/21371/files
Please reload this pagehttps://github.com/matplotlib/matplotlib/pull/21371/files
config.yml https://github.com/matplotlib/matplotlib/pull/21371/files#diff-78a8a19706dbd2a4425dd72bdab0502ed7a2cef16365ab7030a5a0588927bf47
deploy-docs.sh https://github.com/matplotlib/matplotlib/pull/21371/files#diff-d5be687f0cdd17325295a8ba8bc35e8880d8610125de440c2d017e3aad2950d7
PULL_REQUEST_TEMPLATE.md https://github.com/matplotlib/matplotlib/pull/21371/files#diff-18813c86948efc57e661623d7ba48ff94325c9b5421ec9177f724922dd553a35
cibuildwheel.yml https://github.com/matplotlib/matplotlib/pull/21371/files#diff-504e739c530d50b780e9a09ae8fd0c3ea8258ea7553be06afb06f03f95b1ee0a
pr_welcome.yml https://github.com/matplotlib/matplotlib/pull/21371/files#diff-42e82bf7d2127298153df6e0af7bf102c87e48a1514b61ef34dc4d4259a22b79
README.rst https://github.com/matplotlib/matplotlib/pull/21371/files#diff-7b3ed02bc73dc06b7db906cf97aa91dec2b2eb21f2d92bc5caa761df5bbc168f
conf.py https://github.com/matplotlib/matplotlib/pull/21371/files#diff-e170e9a7d787c21095c6c11bb25f0f1ff0294a42a46d45ba6fb5ed794e457624
MEP19.rst https://github.com/matplotlib/matplotlib/pull/21371/files#diff-913c355729d9cc62cc0934a835d230dfba57734606344b2272c661c8f5ce8e19
template.rst https://github.com/matplotlib/matplotlib/pull/21371/files#diff-f9766fbcec40fd667e7008ed55f245fc7e9846622211e114dfe4df928ccc72bc
coding_guide.rst https://github.com/matplotlib/matplotlib/pull/21371/files#diff-3051cef4806a0b7414b3c044fba1b6227d93a9626099ded000e27f87339089bc
contributing.rst https://github.com/matplotlib/matplotlib/pull/21371/files#diff-a5688b9958b90f81df0d5f060660979d2df7e03220bd7edcdc2fa4d4392bfc90
development_workflow.rst https://github.com/matplotlib/matplotlib/pull/21371/files#diff-5a4263108c563c18be40855aceaf1a66cbde046a8fda69cbc42b931a8c816733
dot2_dot3.rst https://github.com/matplotlib/matplotlib/pull/21371/files#diff-d2a07c1064a10d0f6f2b3990a6a467e3b3d501653bb4d0c3534b21535119f170
git_links.inc https://github.com/matplotlib/matplotlib/pull/21371/files#diff-e87b322675dbcbe2a88012fcb778ce59a872621a0415a91cadc2cae6bc7fb9f7
maintainer_workflow.rst https://github.com/matplotlib/matplotlib/pull/21371/files#diff-8ea5aef440102cb72220cfd930ed56cb6cb9499a4b2ed659977f1287ae6708e2
patching.rst https://github.com/matplotlib/matplotlib/pull/21371/files#diff-7280889b7490448f047fc0d2da95276ef972033878d636ff5c3aafe09d36d212
set_up_fork.rst https://github.com/matplotlib/matplotlib/pull/21371/files#diff-207ad4a72e42ef63cb5994f30d2fa93505e3b2c6e43f1ec079e083a3dc6af642
release_guide.rst https://github.com/matplotlib/matplotlib/pull/21371/files#diff-4ca57718a84f31a4b2a993ffd096debd80f3c31f72cfc22d8c131a668492ea11
installing_source.rst https://github.com/matplotlib/matplotlib/pull/21371/files#diff-10266a0940b8acf3b22ac18c76e1485c6656b45f90cad25902c8719ba9771b22
__init__.py https://github.com/matplotlib/matplotlib/pull/21371/files#diff-47339c58ad4d3bf37dfc5302e1c27245645ed38258d9b146a3f4d47274ef054d
test_axes.py https://github.com/matplotlib/matplotlib/pull/21371/files#diff-ef5144bd27a700deb760ef56ccf51dc6fcfe86723f9ffa84df7f024985bf3ee7
github_stats.py https://github.com/matplotlib/matplotlib/pull/21371/files#diff-284a1b462cd74af2e6791e783037c3c1cd6c141508b2f16716ebb3153aff6b4b
images.py https://github.com/matplotlib/matplotlib/pull/21371/files#diff-2d442f6e483bfc1ec9b2ee13cf93623ae6890ad99ce42c389e7d852f27fd141e
axes_grid.py https://github.com/matplotlib/matplotlib/pull/21371/files#diff-a51f64248dd54c0e40b857ed0b4acd4a9abfc078ff4b40f36969a3b6898bf370
.circleci/config.ymlhttps://github.com/matplotlib/matplotlib/pull/21371/files#diff-78a8a19706dbd2a4425dd72bdab0502ed7a2cef16365ab7030a5a0588927bf47
View file https://github.com/tacaswell/matplotlib/blob/3fcb595c57fdef0bf46cc789f76e08db17705f12/.circleci/config.yml
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/matplotlib/matplotlib/pull/21371/{{ revealButtonHref }}
https://github.com/matplotlib/matplotlib/pull/21371/files#diff-78a8a19706dbd2a4425dd72bdab0502ed7a2cef16365ab7030a5a0588927bf47
https://github.com/matplotlib/matplotlib/pull/21371/files#diff-78a8a19706dbd2a4425dd72bdab0502ed7a2cef16365ab7030a5a0588927bf47
https://github.com/matplotlib/matplotlib/pull/21371/files#diff-78a8a19706dbd2a4425dd72bdab0502ed7a2cef16365ab7030a5a0588927bf47
https://github.com/matplotlib/matplotlib/pull/21371/files#diff-78a8a19706dbd2a4425dd72bdab0502ed7a2cef16365ab7030a5a0588927bf47
.circleci/deploy-docs.shhttps://github.com/matplotlib/matplotlib/pull/21371/files#diff-d5be687f0cdd17325295a8ba8bc35e8880d8610125de440c2d017e3aad2950d7
View file https://github.com/tacaswell/matplotlib/blob/3fcb595c57fdef0bf46cc789f76e08db17705f12/.circleci/deploy-docs.sh
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/matplotlib/matplotlib/pull/21371/{{ revealButtonHref }}
https://github.com/matplotlib/matplotlib/pull/21371/files#diff-d5be687f0cdd17325295a8ba8bc35e8880d8610125de440c2d017e3aad2950d7
https://github.com/matplotlib/matplotlib/pull/21371/files#diff-d5be687f0cdd17325295a8ba8bc35e8880d8610125de440c2d017e3aad2950d7
.github/PULL_REQUEST_TEMPLATE.mdhttps://github.com/matplotlib/matplotlib/pull/21371/files#diff-18813c86948efc57e661623d7ba48ff94325c9b5421ec9177f724922dd553a35
View file https://github.com/tacaswell/matplotlib/blob/3fcb595c57fdef0bf46cc789f76e08db17705f12/.github/PULL_REQUEST_TEMPLATE.md
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/matplotlib/matplotlib/pull/21371/{{ revealButtonHref }}
https://github.com/matplotlib/matplotlib/pull/21371/files#diff-18813c86948efc57e661623d7ba48ff94325c9b5421ec9177f724922dd553a35
https://github.com/matplotlib/matplotlib/pull/21371/files#diff-18813c86948efc57e661623d7ba48ff94325c9b5421ec9177f724922dd553a35
.github/workflows/cibuildwheel.ymlhttps://github.com/matplotlib/matplotlib/pull/21371/files#diff-504e739c530d50b780e9a09ae8fd0c3ea8258ea7553be06afb06f03f95b1ee0a
View file https://github.com/tacaswell/matplotlib/blob/3fcb595c57fdef0bf46cc789f76e08db17705f12/.github/workflows/cibuildwheel.yml
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/matplotlib/matplotlib/pull/21371/{{ revealButtonHref }}
https://github.com/matplotlib/matplotlib/pull/21371/files#diff-504e739c530d50b780e9a09ae8fd0c3ea8258ea7553be06afb06f03f95b1ee0a
https://github.com/matplotlib/matplotlib/pull/21371/files#diff-504e739c530d50b780e9a09ae8fd0c3ea8258ea7553be06afb06f03f95b1ee0a
.github/workflows/pr_welcome.ymlhttps://github.com/matplotlib/matplotlib/pull/21371/files#diff-42e82bf7d2127298153df6e0af7bf102c87e48a1514b61ef34dc4d4259a22b79
View file https://github.com/tacaswell/matplotlib/blob/3fcb595c57fdef0bf46cc789f76e08db17705f12/.github/workflows/pr_welcome.yml
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/matplotlib/matplotlib/pull/21371/{{ revealButtonHref }}
https://github.com/matplotlib/matplotlib/pull/21371/files#diff-42e82bf7d2127298153df6e0af7bf102c87e48a1514b61ef34dc4d4259a22b79
README.rsthttps://github.com/matplotlib/matplotlib/pull/21371/files#diff-7b3ed02bc73dc06b7db906cf97aa91dec2b2eb21f2d92bc5caa761df5bbc168f
View file https://github.com/tacaswell/matplotlib/blob/3fcb595c57fdef0bf46cc789f76e08db17705f12/README.rst
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/matplotlib/matplotlib/pull/21371/{{ revealButtonHref }}
https://github.com/matplotlib/matplotlib/pull/21371/files#diff-7b3ed02bc73dc06b7db906cf97aa91dec2b2eb21f2d92bc5caa761df5bbc168f
https://github.com/matplotlib/matplotlib/pull/21371/files#diff-7b3ed02bc73dc06b7db906cf97aa91dec2b2eb21f2d92bc5caa761df5bbc168f
doc/conf.pyhttps://github.com/matplotlib/matplotlib/pull/21371/files#diff-e170e9a7d787c21095c6c11bb25f0f1ff0294a42a46d45ba6fb5ed794e457624
View file https://github.com/tacaswell/matplotlib/blob/3fcb595c57fdef0bf46cc789f76e08db17705f12/doc/conf.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/matplotlib/matplotlib/pull/21371/{{ revealButtonHref }}
https://github.com/matplotlib/matplotlib/pull/21371/files#diff-e170e9a7d787c21095c6c11bb25f0f1ff0294a42a46d45ba6fb5ed794e457624
https://github.com/matplotlib/matplotlib/pull/21371/files#diff-e170e9a7d787c21095c6c11bb25f0f1ff0294a42a46d45ba6fb5ed794e457624
doc/devel/MEP/MEP19.rsthttps://github.com/matplotlib/matplotlib/pull/21371/files#diff-913c355729d9cc62cc0934a835d230dfba57734606344b2272c661c8f5ce8e19
View file https://github.com/tacaswell/matplotlib/blob/3fcb595c57fdef0bf46cc789f76e08db17705f12/doc/devel/MEP/MEP19.rst
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/matplotlib/matplotlib/pull/21371/{{ revealButtonHref }}
https://github.com/matplotlib/matplotlib/pull/21371/files#diff-913c355729d9cc62cc0934a835d230dfba57734606344b2272c661c8f5ce8e19
https://github.com/matplotlib/matplotlib/pull/21371/files#diff-913c355729d9cc62cc0934a835d230dfba57734606344b2272c661c8f5ce8e19
doc/devel/MEP/template.rsthttps://github.com/matplotlib/matplotlib/pull/21371/files#diff-f9766fbcec40fd667e7008ed55f245fc7e9846622211e114dfe4df928ccc72bc
View file https://github.com/tacaswell/matplotlib/blob/3fcb595c57fdef0bf46cc789f76e08db17705f12/doc/devel/MEP/template.rst
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/matplotlib/matplotlib/pull/21371/{{ revealButtonHref }}
https://github.com/matplotlib/matplotlib/pull/21371/files#diff-f9766fbcec40fd667e7008ed55f245fc7e9846622211e114dfe4df928ccc72bc
https://github.com/matplotlib/matplotlib/pull/21371/files#diff-f9766fbcec40fd667e7008ed55f245fc7e9846622211e114dfe4df928ccc72bc
doc/devel/coding_guide.rsthttps://github.com/matplotlib/matplotlib/pull/21371/files#diff-3051cef4806a0b7414b3c044fba1b6227d93a9626099ded000e27f87339089bc
View file https://github.com/tacaswell/matplotlib/blob/3fcb595c57fdef0bf46cc789f76e08db17705f12/doc/devel/coding_guide.rst
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/matplotlib/matplotlib/pull/21371/{{ revealButtonHref }}
https://github.com/matplotlib/matplotlib/pull/21371/files#diff-3051cef4806a0b7414b3c044fba1b6227d93a9626099ded000e27f87339089bc
https://github.com/matplotlib/matplotlib/pull/21371/files#diff-3051cef4806a0b7414b3c044fba1b6227d93a9626099ded000e27f87339089bc
https://github.com/matplotlib/matplotlib/pull/21371/files#diff-3051cef4806a0b7414b3c044fba1b6227d93a9626099ded000e27f87339089bc
https://github.com/matplotlib/matplotlib/pull/21371/files#diff-3051cef4806a0b7414b3c044fba1b6227d93a9626099ded000e27f87339089bc
https://github.com/matplotlib/matplotlib/pull/21371/files#diff-3051cef4806a0b7414b3c044fba1b6227d93a9626099ded000e27f87339089bc
https://github.com/matplotlib/matplotlib/pull/21371/files#diff-3051cef4806a0b7414b3c044fba1b6227d93a9626099ded000e27f87339089bc
https://github.com/matplotlib/matplotlib/pull/21371/files#diff-3051cef4806a0b7414b3c044fba1b6227d93a9626099ded000e27f87339089bc
https://github.com/matplotlib/matplotlib/pull/21371/files#diff-3051cef4806a0b7414b3c044fba1b6227d93a9626099ded000e27f87339089bc
https://github.com/matplotlib/matplotlib/pull/21371/files#diff-3051cef4806a0b7414b3c044fba1b6227d93a9626099ded000e27f87339089bc
https://github.com/matplotlib/matplotlib/pull/21371/files#diff-3051cef4806a0b7414b3c044fba1b6227d93a9626099ded000e27f87339089bc
https://github.com/matplotlib/matplotlib/pull/21371/files#diff-3051cef4806a0b7414b3c044fba1b6227d93a9626099ded000e27f87339089bc
https://github.com/matplotlib/matplotlib/pull/21371/files#diff-3051cef4806a0b7414b3c044fba1b6227d93a9626099ded000e27f87339089bc
doc/devel/contributing.rsthttps://github.com/matplotlib/matplotlib/pull/21371/files#diff-a5688b9958b90f81df0d5f060660979d2df7e03220bd7edcdc2fa4d4392bfc90
View file https://github.com/tacaswell/matplotlib/blob/3fcb595c57fdef0bf46cc789f76e08db17705f12/doc/devel/contributing.rst
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/matplotlib/matplotlib/pull/21371/{{ revealButtonHref }}
https://github.com/matplotlib/matplotlib/pull/21371/files#diff-a5688b9958b90f81df0d5f060660979d2df7e03220bd7edcdc2fa4d4392bfc90
https://github.com/matplotlib/matplotlib/pull/21371/files#diff-a5688b9958b90f81df0d5f060660979d2df7e03220bd7edcdc2fa4d4392bfc90
https://github.com/matplotlib/matplotlib/pull/21371/files#diff-a5688b9958b90f81df0d5f060660979d2df7e03220bd7edcdc2fa4d4392bfc90
https://github.com/matplotlib/matplotlib/pull/21371/files#diff-a5688b9958b90f81df0d5f060660979d2df7e03220bd7edcdc2fa4d4392bfc90
doc/devel/gitwash/development_workflow.rsthttps://github.com/matplotlib/matplotlib/pull/21371/files#diff-5a4263108c563c18be40855aceaf1a66cbde046a8fda69cbc42b931a8c816733
View file https://github.com/tacaswell/matplotlib/blob/3fcb595c57fdef0bf46cc789f76e08db17705f12/doc/devel/gitwash/development_workflow.rst
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/matplotlib/matplotlib/pull/21371/{{ revealButtonHref }}
https://github.com/matplotlib/matplotlib/pull/21371/files#diff-5a4263108c563c18be40855aceaf1a66cbde046a8fda69cbc42b931a8c816733
QuLogichttps://github.com/QuLogic
Oct 16, 2021https://github.com/matplotlib/matplotlib/pull/21371/files#r730177680
Learn morehttps://docs.github.com/articles/managing-disruptive-comments/#hiding-a-comment
Please reload this pagehttps://github.com/matplotlib/matplotlib/pull/21371/files
tacaswellhttps://github.com/tacaswell
Oct 16, 2021https://github.com/matplotlib/matplotlib/pull/21371/files#r730180501
Learn morehttps://docs.github.com/articles/managing-disruptive-comments/#hiding-a-comment
Please reload this pagehttps://github.com/matplotlib/matplotlib/pull/21371/files
https://github.com/matplotlib/matplotlib/pull/21371/files#diff-5a4263108c563c18be40855aceaf1a66cbde046a8fda69cbc42b931a8c816733
https://github.com/matplotlib/matplotlib/pull/21371/files#diff-5a4263108c563c18be40855aceaf1a66cbde046a8fda69cbc42b931a8c816733
https://github.com/matplotlib/matplotlib/pull/21371/files#diff-5a4263108c563c18be40855aceaf1a66cbde046a8fda69cbc42b931a8c816733
https://github.com/matplotlib/matplotlib/pull/21371/files#diff-5a4263108c563c18be40855aceaf1a66cbde046a8fda69cbc42b931a8c816733
https://github.com/matplotlib/matplotlib/pull/21371/files#diff-5a4263108c563c18be40855aceaf1a66cbde046a8fda69cbc42b931a8c816733
https://github.com/matplotlib/matplotlib/pull/21371/files#diff-5a4263108c563c18be40855aceaf1a66cbde046a8fda69cbc42b931a8c816733
https://github.com/matplotlib/matplotlib/pull/21371/files#diff-5a4263108c563c18be40855aceaf1a66cbde046a8fda69cbc42b931a8c816733
https://github.com/matplotlib/matplotlib/pull/21371/files#diff-5a4263108c563c18be40855aceaf1a66cbde046a8fda69cbc42b931a8c816733
https://github.com/matplotlib/matplotlib/pull/21371/files#diff-5a4263108c563c18be40855aceaf1a66cbde046a8fda69cbc42b931a8c816733
https://github.com/matplotlib/matplotlib/pull/21371/files#diff-5a4263108c563c18be40855aceaf1a66cbde046a8fda69cbc42b931a8c816733
doc/devel/gitwash/dot2_dot3.rsthttps://github.com/matplotlib/matplotlib/pull/21371/files#diff-d2a07c1064a10d0f6f2b3990a6a467e3b3d501653bb4d0c3534b21535119f170
View file https://github.com/tacaswell/matplotlib/blob/3fcb595c57fdef0bf46cc789f76e08db17705f12/doc/devel/gitwash/dot2_dot3.rst
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/matplotlib/matplotlib/pull/21371/{{ revealButtonHref }}
https://github.com/matplotlib/matplotlib/pull/21371/files#diff-d2a07c1064a10d0f6f2b3990a6a467e3b3d501653bb4d0c3534b21535119f170
doc/devel/gitwash/git_links.inchttps://github.com/matplotlib/matplotlib/pull/21371/files#diff-e87b322675dbcbe2a88012fcb778ce59a872621a0415a91cadc2cae6bc7fb9f7
View file https://github.com/tacaswell/matplotlib/blob/3fcb595c57fdef0bf46cc789f76e08db17705f12/doc/devel/gitwash/git_links.inc
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/matplotlib/matplotlib/pull/21371/{{ revealButtonHref }}
https://github.com/matplotlib/matplotlib/pull/21371/files#diff-e87b322675dbcbe2a88012fcb778ce59a872621a0415a91cadc2cae6bc7fb9f7
https://github.com/matplotlib/matplotlib/pull/21371/files#diff-e87b322675dbcbe2a88012fcb778ce59a872621a0415a91cadc2cae6bc7fb9f7
doc/devel/gitwash/maintainer_workflow.rsthttps://github.com/matplotlib/matplotlib/pull/21371/files#diff-8ea5aef440102cb72220cfd930ed56cb6cb9499a4b2ed659977f1287ae6708e2
View file https://github.com/tacaswell/matplotlib/blob/3fcb595c57fdef0bf46cc789f76e08db17705f12/doc/devel/gitwash/maintainer_workflow.rst
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/matplotlib/matplotlib/pull/21371/{{ revealButtonHref }}
https://github.com/matplotlib/matplotlib/pull/21371/files#diff-8ea5aef440102cb72220cfd930ed56cb6cb9499a4b2ed659977f1287ae6708e2
https://github.com/matplotlib/matplotlib/pull/21371/files#diff-8ea5aef440102cb72220cfd930ed56cb6cb9499a4b2ed659977f1287ae6708e2
https://github.com/matplotlib/matplotlib/pull/21371/files#diff-8ea5aef440102cb72220cfd930ed56cb6cb9499a4b2ed659977f1287ae6708e2
https://github.com/matplotlib/matplotlib/pull/21371/files#diff-8ea5aef440102cb72220cfd930ed56cb6cb9499a4b2ed659977f1287ae6708e2
https://github.com/matplotlib/matplotlib/pull/21371/files#diff-8ea5aef440102cb72220cfd930ed56cb6cb9499a4b2ed659977f1287ae6708e2
Please reload this pagehttps://github.com/matplotlib/matplotlib/pull/21371/files
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.