Skip to content

Commit a5b08b0

Browse files
committed
drop code for Python 3.2
Signed-off-by: Inada Naoki <[email protected]>
1 parent 3ed7fd1 commit a5b08b0

File tree

3 files changed

+2
-21
lines changed

3 files changed

+2
-21
lines changed

fluent/handler.py

+2-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
1+
import json
12
import logging
23
import socket
3-
import sys
4-
5-
try:
6-
import simplejson as json
7-
except ImportError: # pragma: no cover
8-
import json
94

105
from fluent import sender
116

@@ -42,7 +37,7 @@ def __init__(
4237
):
4338
super().__init__(None, datefmt)
4439

45-
if sys.version_info[0:2] >= (3, 2) and style != "%":
40+
if style != "%":
4641
self.__style, basic_fmt_dict = {
4742
"{": (
4843
logging.StrFormatStyle,

tests/test_asynchandler.py

-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import logging
2-
import sys
32
import unittest
43

54
try:
@@ -81,9 +80,6 @@ def test_custom_fmt(self):
8180
self.assertTrue("lineno" in data[0][2])
8281
self.assertTrue("emitted_at" in data[0][2])
8382

84-
@unittest.skipUnless(
85-
sys.version_info[0:2] >= (3, 2), "supported with Python 3.2 or above"
86-
)
8783
def test_custom_fmt_with_format_style(self):
8884
handler = self.get_handler_class()("app.follow", port=self._port)
8985

@@ -108,9 +104,6 @@ def test_custom_fmt_with_format_style(self):
108104
self.assertTrue("lineno" in data[0][2])
109105
self.assertTrue("emitted_at" in data[0][2])
110106

111-
@unittest.skipUnless(
112-
sys.version_info[0:2] >= (3, 2), "supported with Python 3.2 or above"
113-
)
114107
def test_custom_fmt_with_template_style(self):
115108
handler = self.get_handler_class()("app.follow", port=self._port)
116109

tests/test_handler.py

-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import logging
2-
import sys
32
import unittest
43

54
import fluent.handler
@@ -139,9 +138,6 @@ def formatter(record):
139138
self.assertEqual(1234, data[0][2]["x"])
140139
self.assertEqual(1, data[0][2]["custom_value"])
141140

142-
@unittest.skipUnless(
143-
sys.version_info[0:2] >= (3, 2), "supported with Python 3.2 or above"
144-
)
145141
def test_custom_fmt_with_format_style(self):
146142
handler = fluent.handler.FluentHandler("app.follow", port=self._port)
147143

@@ -167,9 +163,6 @@ def test_custom_fmt_with_format_style(self):
167163
self.assertTrue("lineno" in data[0][2])
168164
self.assertTrue("emitted_at" in data[0][2])
169165

170-
@unittest.skipUnless(
171-
sys.version_info[0:2] >= (3, 2), "supported with Python 3.2 or above"
172-
)
173166
def test_custom_fmt_with_template_style(self):
174167
handler = fluent.handler.FluentHandler("app.follow", port=self._port)
175168

0 commit comments

Comments
 (0)