From 0583e68d289601a7046671ac6cfff786f6af938a Mon Sep 17 00:00:00 2001 From: Michael Bianco Date: Wed, 4 Feb 2026 07:18:07 -0700 Subject: [PATCH] docs: use https references not http and update readthedocs domain fixes https://github.com/Suor/funcy/issues/163 --- README.rst | 6 +++--- docs/_static/nhpup_1.1.js | 2 +- docs/conf.py | 4 ++-- docs/overview.rst | 2 +- funcy/seqs.py | 2 +- setup.py | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.rst b/README.rst index c10876c5..d15c2b87 100644 --- a/README.rst +++ b/README.rst @@ -4,8 +4,8 @@ Funcy |Build Status| A collection of fancy functional tools focused on practicality. Inspired by clojure, underscore and my own abstractions. Keep reading to get an overview -or `read the docs `_. -Or jump directly to `cheatsheet `_. +or `read the docs `_. +Or jump directly to `cheatsheet `_. Works with Python 3.4+ and pypy3. @@ -155,7 +155,7 @@ Ease debugging: # 10.2 ms in Creating models -And `much more `_. +And `much more `_. Dive in diff --git a/docs/_static/nhpup_1.1.js b/docs/_static/nhpup_1.1.js index ca6ff5c8..d07b2dd3 100644 --- a/docs/_static/nhpup_1.1.js +++ b/docs/_static/nhpup_1.1.js @@ -7,7 +7,7 @@ Usage: `_. + :end-before: And `much more `_. diff --git a/funcy/seqs.py b/funcy/seqs.py index 9a962526..760a18e7 100644 --- a/funcy/seqs.py +++ b/funcy/seqs.py @@ -108,7 +108,7 @@ def butlast(seq): def ilen(seq): """Consumes an iterable not reading it into memory and returns the number of items.""" - # NOTE: implementation borrowed from http://stackoverflow.com/a/15112059/753382 + # NOTE: implementation borrowed from https://stackoverflow.com/a/15112059/753382 counter = count() deque(zip(seq, counter), maxlen=0) # (consume at C speed) return next(counter) diff --git a/setup.py b/setup.py index 8cd7b025..af138fe4 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ description='A fancy and practical functional tools', long_description=README, long_description_content_type="text/x-rst", - url='http://github.com/Suor/funcy', + url='https://github.com/Suor/funcy', license='BSD', packages=['funcy'],