Skip to content

Commit 45c9acd

Browse files
committed
Keep the default recursion limit value
1 parent ac13863 commit 45c9acd

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

goose/__init__.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,11 @@
2020
See the License for the specific language governing permissions and
2121
limitations under the License.
2222
"""
23-
import sys
24-
# the default recursion limit is 1000
25-
sys.setrecursionlimit(2000)
2623
import os
2724
import platform
2825
from tempfile import mkstemp
2926
import traceback
27+
import sys
3028

3129
from goose.version import version_info, __version__
3230
from goose.configuration import Configuration

0 commit comments

Comments
 (0)