Skip to content

Commit e71dc2d

Browse files
authored
Update profile_functions_class.py
Fixed and replaced xrange with range in NIST_profile/profile_functions_class.py
1 parent 4725770 commit e71dc2d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

GSASII/NIST_profile/profile_functions_class.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
# this is built once, and shared by all instances
6666
# fftw can handle a variety of transform factorizations
6767
ft_factors=[
68-
2*2**i*3**j*5**k for i in xrange(20) for j in range(10) for k in range(8)
68+
2*2**i*3**j*5**k for i in range(20) for j in range(10) for k in range(8)
6969
if 2*2**i*3**j*5**k <= 1000000
7070
]
7171
cache.enable()

0 commit comments

Comments
 (0)