From 1f307db52785634d6667fde8de0273d5e0612310 Mon Sep 17 00:00:00 2001
From: Michael Merickel <michael@merickel.org>
Date: Thu, 04 Oct 2018 03:16:26 +0200
Subject: [PATCH] remove deprecated set_request_property

---
 pyramid/config/factories.py |   20 --------------------
 1 files changed, 0 insertions(+), 20 deletions(-)

diff --git a/pyramid/config/factories.py b/pyramid/config/factories.py
index 7a5b589..5224826 100644
--- a/pyramid/config/factories.py
+++ b/pyramid/config/factories.py
@@ -1,4 +1,3 @@
-from zope.deprecation import deprecated
 from zope.interface import implementer
 
 from pyramid.interfaces import (
@@ -214,25 +213,6 @@
             intr['reify'] = False
             self.action(('request extensions', name), register,
                         introspectables=(intr,))
-
-    @action_method
-    def set_request_property(self, callable, name=None, reify=False):
-        """ Add a property to the request object.
-
-        .. deprecated:: 1.5
-            :meth:`pyramid.config.Configurator.add_request_method` should be
-            used instead.  (This method was docs-deprecated in 1.4 and
-            issues a real deprecation warning in 1.5).
-
-        .. versionadded:: 1.3
-        """
-        self.add_request_method(
-            callable, name=name, property=not reify, reify=reify)
-
-    deprecated(
-        set_request_property,
-        'set_request_propery() is deprecated as of Pyramid 1.5; use '
-        'add_request_method() with the property=True argument instead')
 
     @action_method
     def set_execution_policy(self, policy):

--
Gitblit v1.9.3