File tree 3 files changed +2
-21
lines changed
3 files changed +2
-21
lines changed Original file line number Diff line number Diff line change
1
+ import json
1
2
import logging
2
3
import socket
3
- import sys
4
-
5
- try :
6
- import simplejson as json
7
- except ImportError : # pragma: no cover
8
- import json
9
4
10
5
from fluent import sender
11
6
@@ -42,7 +37,7 @@ def __init__(
42
37
):
43
38
super ().__init__ (None , datefmt )
44
39
45
- if sys . version_info [ 0 : 2 ] >= ( 3 , 2 ) and style != "%" :
40
+ if style != "%" :
46
41
self .__style , basic_fmt_dict = {
47
42
"{" : (
48
43
logging .StrFormatStyle ,
Original file line number Diff line number Diff line change 1
1
import logging
2
- import sys
3
2
import unittest
4
3
5
4
try :
@@ -81,9 +80,6 @@ def test_custom_fmt(self):
81
80
self .assertTrue ("lineno" in data [0 ][2 ])
82
81
self .assertTrue ("emitted_at" in data [0 ][2 ])
83
82
84
- @unittest .skipUnless (
85
- sys .version_info [0 :2 ] >= (3 , 2 ), "supported with Python 3.2 or above"
86
- )
87
83
def test_custom_fmt_with_format_style (self ):
88
84
handler = self .get_handler_class ()("app.follow" , port = self ._port )
89
85
@@ -108,9 +104,6 @@ def test_custom_fmt_with_format_style(self):
108
104
self .assertTrue ("lineno" in data [0 ][2 ])
109
105
self .assertTrue ("emitted_at" in data [0 ][2 ])
110
106
111
- @unittest .skipUnless (
112
- sys .version_info [0 :2 ] >= (3 , 2 ), "supported with Python 3.2 or above"
113
- )
114
107
def test_custom_fmt_with_template_style (self ):
115
108
handler = self .get_handler_class ()("app.follow" , port = self ._port )
116
109
Original file line number Diff line number Diff line change 1
1
import logging
2
- import sys
3
2
import unittest
4
3
5
4
import fluent .handler
@@ -139,9 +138,6 @@ def formatter(record):
139
138
self .assertEqual (1234 , data [0 ][2 ]["x" ])
140
139
self .assertEqual (1 , data [0 ][2 ]["custom_value" ])
141
140
142
- @unittest .skipUnless (
143
- sys .version_info [0 :2 ] >= (3 , 2 ), "supported with Python 3.2 or above"
144
- )
145
141
def test_custom_fmt_with_format_style (self ):
146
142
handler = fluent .handler .FluentHandler ("app.follow" , port = self ._port )
147
143
@@ -167,9 +163,6 @@ def test_custom_fmt_with_format_style(self):
167
163
self .assertTrue ("lineno" in data [0 ][2 ])
168
164
self .assertTrue ("emitted_at" in data [0 ][2 ])
169
165
170
- @unittest .skipUnless (
171
- sys .version_info [0 :2 ] >= (3 , 2 ), "supported with Python 3.2 or above"
172
- )
173
166
def test_custom_fmt_with_template_style (self ):
174
167
handler = fluent .handler .FluentHandler ("app.follow" , port = self ._port )
175
168
You can’t perform that action at this time.
0 commit comments