Skip to content

Commit 7fe2edd

Browse files
jdufresneauvipy
authored andcommitted
Prefer https:// links where available (#253)
1 parent 471d38e commit 7fe2edd

File tree

10 files changed

+16
-17
lines changed

10 files changed

+16
-17
lines changed

.editorconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# http://editorconfig.org
1+
# https://editorconfig.org/
22

33
root = true
44

CHANGES.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
- Extend 'Process' to be compatible with < Py3.5.
1515
- Use a properly initialized logger in pool.py error logging.
1616
- _trywaitkill can now kill a whole process group if the worker process declares itself as a group leader.
17-
- Fix cpython issue 14881 (See http://bugs.python.org/issue14881).
17+
- Fix cpython issue 14881 (See https://bugs.python.org/issue14881).
1818
- Fix for a crash on windows.
1919
- Fix messaging in case of worker exceeds max memory.
2020

@@ -742,4 +742,4 @@
742742

743743
- Pool improvements from Celery.
744744

745-
- no-execv patch added (http://bugs.python.org/issue8713)
745+
- no-execv patch added (https://bugs.python.org/issue8713)

INSTALL.txt

+2-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ also need to install the `pywin32` package.
1111

1212
On Unix It's highly recommended to use Python 2.5.3 (not yet released) or
1313
apply the ``fork-thread-patch-2`` patch from `Issue 1683
14-
http://bugs.python.org/issue1683`_.
14+
https://bugs.python.org/issue1683`_.
1515

1616
Windows binary builds for Python 2.4 and Python 2.5 are available at
1717

@@ -81,11 +81,10 @@ Building docs
8181
-------------
8282

8383
To build the standalone documentation you need Sphinx 0.5 and setuptools
84-
0.6c9 or newer. Both are available at http://pypi.python.org/. With
84+
0.6c9 or newer. Both are available at https://pypi.org/. With
8585
setuptools installed, do ::
8686

8787
sudo easy_install-2.5 "Sphinx>=0.5"
8888
make doc
8989

9090
The docs end up in ``build/sphinx/builder_name``.
91-

README.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ billiard
3232
About
3333
-----
3434

35-
`billiard` is a fork of the Python 2.7 `multiprocessing <http://docs.python.org/library/multiprocessing.html>`_
35+
`billiard` is a fork of the Python 2.7 `multiprocessing <https://docs.python.org/library/multiprocessing.html>`_
3636
package. The multiprocessing package itself is a renamed and updated version of
3737
R Oudkerk's `pyprocessing <https://pypi.org/project/processing/>`_ package.
3838
This standalone variant draws its fixes/improvements from python-trunk and provides
@@ -57,5 +57,5 @@ Bug reporting
5757
-------------
5858

5959
Please report bugs related to multiprocessing at the
60-
`Python bug tracker <http://bugs.python.org/>`_. Issues related to billiard
61-
should be reported at http://github.com/celery/billiard/issues.
60+
`Python bug tracker <https://bugs.python.org/>`_. Issues related to billiard
61+
should be reported at https://github.com/celery/billiard/issues.

appveyor.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ environment:
33
global:
44
# SDK v7.0 MSVC Express 2008's SetEnv.cmd script will fail if the
55
# /E:ON and /V:ON options are not enabled in the batch script intepreter
6-
# See: http://stackoverflow.com/a/13751649/163740
6+
# See: https://stackoverflow.com/a/13751649/163740
77
WITH_COMPILER: "cmd /E:ON /V:ON /C .\\appveyor\\run_with_compiler.cmd"
88

99
matrix:
1010

1111
# Pre-installed Python versions, which Appveyor may upgrade to
1212
# a later point release.
13-
# See: http://www.appveyor.com/docs/installed-software#python
13+
# See: https://www.appveyor.com/docs/build-environment/#python
1414

1515
- PYTHON: "C:\\Python27"
1616
PYTHON_VERSION: "2.7.x"

appveyor/install.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Sample script to install Python and pip under Windows
22
# Authors: Olivier Grisel and Kyle Kastner
3-
# License: CC0 1.0 Universal: http://creativecommons.org/publicdomain/zero/1.0/
3+
# License: CC0 1.0 Universal: https://creativecommons.org/publicdomain/zero/1.0/
44

55
$BASE_URL = "https://www.python.org/ftp/python/"
66
$GET_PIP_URL = "https://bootstrap.pypa.io/get-pip.py"

appveyor/run_with_compiler.cmd

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
::
1414
:: More details at:
1515
:: https://github.com/cython/cython/wiki/64BitCythonExtensionsOnWindows
16-
:: http://stackoverflow.com/a/13751649/163740
16+
:: https://stackoverflow.com/a/13751649/163740
1717
::
1818
:: Author: Olivier Grisel
19-
:: License: CC0 1.0 Universal: http://creativecommons.org/publicdomain/zero/1.0/
19+
:: License: CC0 1.0 Universal: https://creativecommons.org/publicdomain/zero/1.0/
2020
@ECHO OFF
2121

2222
SET COMMAND_TO_RUN=%*

billiard/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
__author_email__ = '[email protected]'
2929
__maintainer__ = 'Ask Solem'
3030
__contact__ = "[email protected]"
31-
__homepage__ = "http://github.com/celery/billiard"
31+
__homepage__ = "https://github.com/celery/billiard"
3232
__docformat__ = "restructuredtext"
3333

3434
# -eof meta-

billiard/process.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ def _bootstrap(self):
302302
_set_current_process(self)
303303

304304
# Re-init logging system.
305-
# Workaround for http://bugs.python.org/issue6721/#msg140215
305+
# Workaround for https://bugs.python.org/issue6721/#msg140215
306306
# Python logging module uses RLock() objects which are broken
307307
# after fork. This can result in a deadlock (Celery Issue #496).
308308
loggerDict = logging.Logger.manager.loggerDict

t/integration/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def run(self, *args, **kwargs):
3535
description='Functional test suite for billiard',
3636
author='Ask Solem',
3737
author_email='[email protected]',
38-
url='http://github.com/celery/billiard',
38+
url='https://github.com/celery/billiard',
3939
platforms=['any'],
4040
packages=[],
4141
data_files=[],

0 commit comments

Comments
 (0)