Skip to content

Commit 3aa90c4

Browse files
committed
Added test
1 parent 8065db4 commit 3aa90c4

File tree

3 files changed

+286
-0
lines changed

3 files changed

+286
-0
lines changed

tests/corpus/x.chat.line-numbers/1.py

+115
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,115 @@
1+
# RemovedInDjango50Warning
2+
# Copyright (c) 2010 Guilherme Gondim. All rights reserved.
3+
# Copyright (c) 2009 Simon Willison. All rights reserved.
4+
# Copyright (c) 2002 Drew Perttula. All rights reserved.
5+
#
6+
# License:
7+
# Python Software Foundation License version 2
8+
#
9+
# See the file "LICENSE" for terms & conditions for usage, and a DISCLAIMER OF
10+
# ALL WARRANTIES.
11+
#
12+
# This Baseconv distribution contains no GNU General Public Licensed (GPLed)
13+
# code so it may be used in proprietary projects just like prior ``baseconv``
14+
# distributions.
15+
#
16+
# All trademarks referenced herein are property of their respective holders.
17+
#
18+
19+
"""
20+
Convert numbers from base 10 integers to base X strings and back again.
21+
22+
Sample usage::
23+
24+
>>> base20 = BaseConverter('0123456789abcdefghij')
25+
>>> base20.encode(1234)
26+
'31e'
27+
>>> base20.decode('31e')
28+
1234
29+
>>> base20.encode(-1234)
30+
'-31e'
31+
>>> base20.decode('-31e')
32+
-1234
33+
>>> base11 = BaseConverter('0123456789-', sign='$')
34+
>>> base11.encode(-1234)
35+
'$-22'
36+
>>> base11.decode('$-22')
37+
-1234
38+
39+
"""
40+
import warnings
41+
42+
from django.utils.deprecation import RemovedInDjango50Warning
43+
44+
warnings.warn(
45+
"The django.utils.baseconv module is deprecated.",
46+
category=RemovedInDjango50Warning,
47+
stacklevel=2,
48+
)
49+
50+
BASE2_ALPHABET = "01"
51+
BASE16_ALPHABET = "0123456789ABCDEF"
52+
BASE56_ALPHABET = "23456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnpqrstuvwxyz"
53+
BASE36_ALPHABET = "0123456789abcdefghijklmnopqrstuvwxyz"
54+
BASE62_ALPHABET = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
55+
BASE64_ALPHABET = BASE62_ALPHABET + "-_"
56+
57+
58+
def convert(number, from_digits, to_digits, sign):
59+
if str(number)[0] == sign:
60+
number = str(number)[1:]
61+
neg = 1
62+
else:
63+
neg = 0
64+
65+
# make an integer out of the number
66+
x = 0
67+
for digit in str(number):
68+
x = x * len(from_digits) + from_digits.index(digit)
69+
70+
# create the result in base 'len(to_digits)'
71+
if x == 0:
72+
res = to_digits[0]
73+
else:
74+
res = ""
75+
while x > 0:
76+
digit = x % len(to_digits)
77+
res = to_digits[digit] + res
78+
x = int(x // len(to_digits))
79+
return neg, res
80+
class BaseConverter:
81+
decimal_digits = "0123456789"
82+
83+
def __init__(self, digits, sign="-"):
84+
self.sign = sign
85+
self.digits = digits
86+
if sign in self.digits:
87+
raise ValueError("Sign character found in converter base digits.")
88+
89+
def __repr__(self):
90+
return "<%s: base%s (%s)>" % (
91+
self.__class__.__name__,
92+
len(self.digits),
93+
self.digits,
94+
)
95+
96+
def encode(self, i):
97+
neg, value = convert(i, self.decimal_digits, self.digits, "-")
98+
if neg:
99+
return self.sign + value
100+
return value
101+
102+
def decode(self, s):
103+
neg, value = convert(s, self.digits, self.decimal_digits, self.sign)
104+
if neg:
105+
value = "-" + value
106+
return int(value)
107+
108+
109+
110+
base2 = BaseConverter(BASE2_ALPHABET)
111+
base16 = BaseConverter(BASE16_ALPHABET)
112+
base36 = BaseConverter(BASE36_ALPHABET)
113+
base56 = BaseConverter(BASE56_ALPHABET)
114+
base62 = BaseConverter(BASE62_ALPHABET)
115+
base64 = BaseConverter(BASE64_ALPHABET, sign="$")
+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
<no-train>
2+
3+
# Refactor BaseConverter.convert
4+
5+
Refactor the `convert` method in the `BaseConverter` class to be a stand alone, top level function.
6+
Name the new function `convert`, exactly the same name as the existing method.
7+
Update any existing `self.convert` calls to work with the new `convert` function.
8+
9+
When you updated method `decode` to replace line 2, your content block used "@1:".
10+
Explain in details why the reference point is the method definition.
11+
Don't change any code, just give me explanations
12+
13+
When updating call sites, use context-relative line numbers with the method being modified as context
14+
15+
Explain in deep details how you chose line number 3 to update method "encode": where do you start counting line numbers?
16+
don't write any script, just answer my questions.
17+
18+
Explain in deep details why, when replacing the lines, you provided content with relative indent prefix = 1.
19+
Just answer my question, don't change any code.
20+
21+
The relative indentation level is relative to the line, not relative to the class BaseConverter. Help me improve the
22+
instructions I gave you earlier about CEDARScript to make it super clear and avoid this mistake in the future.
23+
24+
25+
```CEDARScript
26+
-- Move the `convert` method from the `BaseConverter` class, placing it at the top level, just before the line where its class starts
27+
UPDATE CLASS "BaseConverter"
28+
FROM FILE "1.py"
29+
MOVE METHOD "convert"
30+
INSERT BEFORE CLASS "BaseConverter"
31+
RELATIVE INDENTATION 0;
32+
33+
-- Update the copied function to remove references to `self`
34+
UPDATE FUNCTION "convert"
35+
FROM FILE "1.py"
36+
REPLACE LINE 1
37+
WITH CONTENT '''
38+
@0:def convert(number, from_digits, to_digits, sign):
39+
''';
40+
41+
-- Update ALL call sites of the method `convert` to call the new top-level function with the same name
42+
UPDATE METHOD "encode"
43+
FROM FILE "1.py"
44+
REPLACE LINE 3
45+
WITH CONTENT '''
46+
@0:neg, value = convert(i, self.decimal_digits, self.digits, "-")
47+
''';
48+
UPDATE METHOD "decode"
49+
FROM FILE "1.py"
50+
REPLACE LINE 3
51+
WITH CONTENT '''
52+
@0:neg, value = convert(s, self.digits, self.decimal_digits, self.sign)
53+
''';
54+
55+
```
56+
</no-train>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,115 @@
1+
# RemovedInDjango50Warning
2+
# Copyright (c) 2010 Guilherme Gondim. All rights reserved.
3+
# Copyright (c) 2009 Simon Willison. All rights reserved.
4+
# Copyright (c) 2002 Drew Perttula. All rights reserved.
5+
#
6+
# License:
7+
# Python Software Foundation License version 2
8+
#
9+
# See the file "LICENSE" for terms & conditions for usage, and a DISCLAIMER OF
10+
# ALL WARRANTIES.
11+
#
12+
# This Baseconv distribution contains no GNU General Public Licensed (GPLed)
13+
# code so it may be used in proprietary projects just like prior ``baseconv``
14+
# distributions.
15+
#
16+
# All trademarks referenced herein are property of their respective holders.
17+
#
18+
19+
"""
20+
Convert numbers from base 10 integers to base X strings and back again.
21+
22+
Sample usage::
23+
24+
>>> base20 = BaseConverter('0123456789abcdefghij')
25+
>>> base20.encode(1234)
26+
'31e'
27+
>>> base20.decode('31e')
28+
1234
29+
>>> base20.encode(-1234)
30+
'-31e'
31+
>>> base20.decode('-31e')
32+
-1234
33+
>>> base11 = BaseConverter('0123456789-', sign='$')
34+
>>> base11.encode(-1234)
35+
'$-22'
36+
>>> base11.decode('$-22')
37+
-1234
38+
39+
"""
40+
import warnings
41+
42+
from django.utils.deprecation import RemovedInDjango50Warning
43+
44+
warnings.warn(
45+
"The django.utils.baseconv module is deprecated.",
46+
category=RemovedInDjango50Warning,
47+
stacklevel=2,
48+
)
49+
50+
BASE2_ALPHABET = "01"
51+
BASE16_ALPHABET = "0123456789ABCDEF"
52+
BASE56_ALPHABET = "23456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnpqrstuvwxyz"
53+
BASE36_ALPHABET = "0123456789abcdefghijklmnopqrstuvwxyz"
54+
BASE62_ALPHABET = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
55+
BASE64_ALPHABET = BASE62_ALPHABET + "-_"
56+
57+
58+
def convert(number, from_digits, to_digits, sign):
59+
if str(number)[0] == sign:
60+
number = str(number)[1:]
61+
neg = 1
62+
else:
63+
neg = 0
64+
65+
# make an integer out of the number
66+
x = 0
67+
for digit in str(number):
68+
x = x * len(from_digits) + from_digits.index(digit)
69+
70+
# create the result in base 'len(to_digits)'
71+
if x == 0:
72+
res = to_digits[0]
73+
else:
74+
res = ""
75+
while x > 0:
76+
digit = x % len(to_digits)
77+
res = to_digits[digit] + res
78+
x = int(x // len(to_digits))
79+
return neg, res
80+
class BaseConverter:
81+
decimal_digits = "0123456789"
82+
83+
def __init__(self, digits, sign="-"):
84+
self.sign = sign
85+
self.digits = digits
86+
if sign in self.digits:
87+
raise ValueError("Sign character found in converter base digits.")
88+
89+
def __repr__(self):
90+
return "<%s: base%s (%s)>" % (
91+
self.__class__.__name__,
92+
len(self.digits),
93+
self.digits,
94+
)
95+
96+
def encode(self, i):
97+
neg, value = self.convert(i, self.decimal_digits, self.digits, "-")
98+
if neg:
99+
return self.sign + value
100+
return value
101+
102+
def decode(self, s):
103+
neg, value = self.convert(s, self.digits, self.decimal_digits, self.sign)
104+
if neg:
105+
value = "-" + value
106+
return int(value)
107+
108+
109+
110+
base2 = BaseConverter(BASE2_ALPHABET)
111+
base16 = BaseConverter(BASE16_ALPHABET)
112+
base36 = BaseConverter(BASE36_ALPHABET)
113+
base56 = BaseConverter(BASE56_ALPHABET)
114+
base62 = BaseConverter(BASE62_ALPHABET)
115+
base64 = BaseConverter(BASE64_ALPHABET, sign="$")

0 commit comments

Comments
 (0)