Skip to content

Commit

Permalink
Prefer https:// links where available (#253)
Browse files Browse the repository at this point in the history
  • Loading branch information
jdufresne authored and auvipy committed Aug 30, 2018
1 parent 471d38e commit 7fe2edd
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# http://editorconfig.org
# https://editorconfig.org/

root = true

Expand Down
4 changes: 2 additions & 2 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
- Extend 'Process' to be compatible with < Py3.5.
- Use a properly initialized logger in pool.py error logging.
- _trywaitkill can now kill a whole process group if the worker process declares itself as a group leader.
- Fix cpython issue 14881 (See http://bugs.python.org/issue14881).
- Fix cpython issue 14881 (See https://bugs.python.org/issue14881).
- Fix for a crash on windows.
- Fix messaging in case of worker exceeds max memory.

Expand Down Expand Up @@ -742,4 +742,4 @@

- Pool improvements from Celery.

- no-execv patch added (http://bugs.python.org/issue8713)
- no-execv patch added (https://bugs.python.org/issue8713)
5 changes: 2 additions & 3 deletions INSTALL.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ also need to install the `pywin32` package.

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

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

Expand Down Expand Up @@ -81,11 +81,10 @@ Building docs
-------------

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

sudo easy_install-2.5 "Sphinx>=0.5"
make doc

The docs end up in ``build/sphinx/builder_name``.

6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ billiard
About
-----

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

Please report bugs related to multiprocessing at the
`Python bug tracker <http://bugs.python.org/>`_. Issues related to billiard
should be reported at http://github.com/celery/billiard/issues.
`Python bug tracker <https://bugs.python.org/>`_. Issues related to billiard
should be reported at https://github.com/celery/billiard/issues.
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ environment:
global:
# SDK v7.0 MSVC Express 2008's SetEnv.cmd script will fail if the
# /E:ON and /V:ON options are not enabled in the batch script intepreter
# See: http://stackoverflow.com/a/13751649/163740
# See: https://stackoverflow.com/a/13751649/163740
WITH_COMPILER: "cmd /E:ON /V:ON /C .\\appveyor\\run_with_compiler.cmd"

matrix:

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

- PYTHON: "C:\\Python27"
PYTHON_VERSION: "2.7.x"
Expand Down
2 changes: 1 addition & 1 deletion appveyor/install.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Sample script to install Python and pip under Windows
# Authors: Olivier Grisel and Kyle Kastner
# License: CC0 1.0 Universal: http://creativecommons.org/publicdomain/zero/1.0/
# License: CC0 1.0 Universal: https://creativecommons.org/publicdomain/zero/1.0/

$BASE_URL = "https://www.python.org/ftp/python/"
$GET_PIP_URL = "https://bootstrap.pypa.io/get-pip.py"
Expand Down
4 changes: 2 additions & 2 deletions appveyor/run_with_compiler.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@
::
:: More details at:
:: https://github.com/cython/cython/wiki/64BitCythonExtensionsOnWindows
:: http://stackoverflow.com/a/13751649/163740
:: https://stackoverflow.com/a/13751649/163740
::
:: Author: Olivier Grisel
:: License: CC0 1.0 Universal: http://creativecommons.org/publicdomain/zero/1.0/
:: License: CC0 1.0 Universal: https://creativecommons.org/publicdomain/zero/1.0/
@ECHO OFF

SET COMMAND_TO_RUN=%*
Expand Down
2 changes: 1 addition & 1 deletion billiard/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
__author_email__ = 'python-dev@python.org'
__maintainer__ = 'Ask Solem'
__contact__ = "ask@celeryproject.org"
__homepage__ = "http://github.com/celery/billiard"
__homepage__ = "https://github.com/celery/billiard"
__docformat__ = "restructuredtext"

# -eof meta-
Expand Down
2 changes: 1 addition & 1 deletion billiard/process.py
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ def _bootstrap(self):
_set_current_process(self)

# Re-init logging system.
# Workaround for http://bugs.python.org/issue6721/#msg140215
# Workaround for https://bugs.python.org/issue6721/#msg140215
# Python logging module uses RLock() objects which are broken
# after fork. This can result in a deadlock (Celery Issue #496).
loggerDict = logging.Logger.manager.loggerDict
Expand Down
2 changes: 1 addition & 1 deletion t/integration/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def run(self, *args, **kwargs):
description='Functional test suite for billiard',
author='Ask Solem',
author_email='ask@celeryproject.org',
url='http://github.com/celery/billiard',
url='https://github.com/celery/billiard',
platforms=['any'],
packages=[],
data_files=[],
Expand Down

0 comments on commit 7fe2edd

Please sign in to comment.