mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-07-25 21:08:35 -07:00
dev-python/celery: remove old
Package-Manager: Portage-2.3.49, Repoman-2.3.10
This commit is contained in:
@@ -1,16 +0,0 @@
|
||||
https://github.com/celery/celery/commit/fb48b1f357f7a416d1413d0056158a74191185af.diff
|
||||
diff --git a/celery/tests/backends/test_mongodb.py b/celery/tests/backends/test_mongodb.py
|
||||
index f7546d3..a32d9ed 100644
|
||||
--- a/celery/tests/backends/test_mongodb.py
|
||||
+++ b/celery/tests/backends/test_mongodb.py
|
||||
@@ -253,8 +253,8 @@ def test_restore_group(self, mock_get_database):
|
||||
mock_collection.find_one.assert_called_once_with(
|
||||
{'_id': sentinel.taskset_id})
|
||||
self.assertItemsEqual(
|
||||
- ['date_done', 'result', 'task_id'],
|
||||
- list(ret_val.keys()),
|
||||
+ list(sorted(['date_done', 'result', 'task_id'])),
|
||||
+ list(sorted(ret_val.keys())),
|
||||
)
|
||||
|
||||
@patch('celery.backends.mongodb.MongoBackend._get_database')
|
||||
@@ -1,22 +0,0 @@
|
||||
From 9c950b47eca2b4e93fd2fe52cf80f158e6cf97ad Mon Sep 17 00:00:00 2001
|
||||
From: George Psarakis <giwrgos.psarakis@gmail.com>
|
||||
Date: Mon, 23 Jan 2017 11:49:38 +0200
|
||||
Subject: [PATCH] AWS DynamoDB result backend (#3736)
|
||||
|
||||
* Fix endless loop in logger_isa (Python 3.6)
|
||||
|
||||
https://github.com/celery/celery/pull/3736#issuecomment-274155454
|
||||
|
||||
diff --git a/celery/utils/log.py b/celery/utils/log.py
|
||||
index 2fb15e6..00df476 100644
|
||||
--- a/celery/utils/log.py
|
||||
+++ b/celery/utils/log.py
|
||||
@@ -82,7 +82,7 @@ def logger_isa(l, p, max=1000):
|
||||
else:
|
||||
if this in seen:
|
||||
raise RuntimeError(
|
||||
- 'Logger {0!r} parents recursive'.format(l),
|
||||
+ 'Logger {0!r} parents recursive'.format(l.name),
|
||||
)
|
||||
seen.add(this)
|
||||
this = this.parent
|
||||
@@ -1,19 +0,0 @@
|
||||
# Prevent un-needed objects.inv files
|
||||
diff -ur celery-3.0.19.orig/docs/conf.py celery-3.0.19/docs/conf.py
|
||||
--- docs/conf.py 2013-04-15 22:51:46.000000000 +0800
|
||||
+++ docs/conf.py 2013-04-27 21:46:25.070423582 +0800
|
||||
@@ -74,14 +74,6 @@
|
||||
# If true, '()' will be appended to :func: etc. cross-reference text.
|
||||
add_function_parentheses = True
|
||||
|
||||
-intersphinx_mapping = {
|
||||
- 'python': ('http://docs.python.org/dev', None),
|
||||
- 'kombu': ('http://kombu.readthedocs.org/en/latest/', None),
|
||||
- 'djcelery': ('http://django-celery.readthedocs.org/en/latest', None),
|
||||
- 'cyme': ('http://cyme.readthedocs.org/en/latest', None),
|
||||
- 'amqp': ('http://amqp.readthedocs.org/en/latest', None),
|
||||
-}
|
||||
-
|
||||
# The name of the Pygments (syntax highlighting) style to use.
|
||||
pygments_style = 'colorful'
|
||||
|
||||
Reference in New Issue
Block a user