Coverage for pygeodesy/interns.py: 99%

347 statements  

« prev     ^ index     » next       coverage.py v7.6.1, created at 2025-01-06 12:20 -0500

1# -*- coding: utf-8 -*- 

2 

3u'''Single C{str}ing constants, C{intern}'ed across C{pygeodesy} 

4modules and function L{pygeodesy.machine}. 

5''' 

6import sys as _sys # in .internals, .lazily 

7try: 

8 _intern = intern # PYCHOK in .lazily, .trf 

9except NameError: # Python 3+ 

10 _intern = _sys.intern 

11 

12_COMMASPACE_ = ', ' # overriden below 

13_SUB_PACKAGES = 'auxilats', 'deprecated', 'geodesicx', 'rhumb' # PYCHOK in ... 

14# ... .lazily, make._dist, MANIFEST, setup.setup, test/bases, test/testModules 

15 

16 

17class _Dash(str): 

18 '''(INTERNAL) Extended C{str} for prefix_DASH_. 

19 ''' 

20 def __call__(self, *args): 

21 '''Join C{self} plus all B{C{args}} like C{'-'.join((self,) + B{args})}. 

22 ''' 

23 return _DASH_(self, *args) # re-callable 

24 

25 

26class _Int(int): 

27 '''(INTERNAL) Unique C{int}. 

28 ''' 

29 pass 

30 

31 

32class Str_(str): 

33 '''Extended, I{callable} C{str} class, not nameable. 

34 

35 @see: Nameable and callable class L{Str<pygeodesy.unitsBase.Str>}. 

36 ''' 

37 def join_(self, *args): 

38 '''Join all positional B{C{args}} like C{self.join(B{args})}. 

39 

40 @return: All B{C{args}} joined by this instance (L{Str_}). 

41 

42 @note: An other L{Str_} instance is returned to make the 

43 result re-callable. 

44 ''' 

45 return Str_(str.join(self, map(str, args))) # re-callable 

46 

47 __call__ = join_ 

48 

49NN = Str_('') # PYCHOK Nomen Nescio <https://Wiktionary.org/wiki/N.N.> 

50 

51 

52class _Prefix(Str_): 

53 '''(INTERNAL) Extended C{str} for prefix. 

54 ''' 

55 def __call__(self, *args): 

56 '''Join C{self} plus all B{C{args}} like C{" ".join((self,) + B{args})}. 

57 ''' 

58 return _SPACE_.join_(self, *args) # re-callable 

59 

60 

61class _PyPy__(str): # overwritten by singleton below 

62 '''(INTERNAL) Extended C{str} for C{"PyPy"} and version. 

63 ''' 

64 def __call__(self, version=NN): 

65 '''Return C{"PyPy <version>"} or C{NN}. 

66 ''' 

67 v = version or _sys.version 

68 if _PyPy__ in v: 

69 v = v.split(_PyPy__)[1].split(None, 1)[0] # == _DOT_.join(_sys.pypy_version_info[:3]) 

70 return NN(_PyPy__, v) 

71 else: 

72 return NN 

73 

74 

75class _Python_(str): # overwritten by singleton below 

76 '''(INTERNAL) Extended C{str} for C{"Python"} and version. 

77 ''' 

78 def __call__(self, version=NN): 

79 '''Return C{"Python <version>"}. 

80 ''' 

81 v = version or _sys.version 

82 return _SPACE_(self, v.split(None, 1)[0]) 

83 

84 

85class _Range(str): 

86 '''(INTERNAL) Extended C{str} for C{range} strings. 

87 ''' 

88 def __call__(self, lo, hi, lopen=False, ropen=False, 

89 prec=0, sep=_COMMASPACE_): 

90 '''Return the range as C{"(lo, hi)"}, C{"(lo, hi]"}, 

91 C{"[lo, hi)"} or C{"[lo, hi]"}. 

92 ''' 

93 from pygeodesy.streprs import Fmt 

94 r = NN(Fmt.f(lo, prec=prec), sep, 

95 Fmt.f(hi, prec=prec)) 

96 f = (Fmt.PAREN if ropen else Fmt.LOPEN) if lopen else \ 

97 (Fmt.ROPEN if ropen else Fmt.SQUARE) 

98 return f(r) 

99 

100 

101class _Slicer(str): 

102 '''(INTERNAL) String slicer C{.fromX} or C{.tillY}. 

103 ''' 

104 def __getattr__(self, name): # .fromX, .tillY 

105 n = len(name) - 4 

106 if n > 0: 

107 # assert len('till') == len(_from_) == 4 

108 if name.startswith('till'): 

109 i = self.find(name[4:]) 

110 return self if i < 0 else _Slicer(self[:i + n]) 

111 elif name.startswith(_from_): 

112 i = self.find(name[4:]) 

113 return self if i < 0 else _Slicer(self[i:]) 

114 return str.__getattr__(self, name) # PYCHOK no cover 

115 

116 

117class MISSING(object): 

118 '''(INTERNAL) Singleton C{str}. 

119 ''' 

120 def toRepr(self, **unused): 

121 return self.__class__.__name__ 

122 

123 __repr__ = __str__ = toStr = toRepr 

124 

125MISSING = MISSING() # PYCHOK singleton 

126MISSING.__name__ = str(MISSING) 

127 

128# __DUNDER__-style names would get mangled in classes 

129_0_ = '0' # PYCHOK 'zero' 

130_0to9_ = '0123456789' # PYCHOK OK 

131_1_ = '1' # PYCHOK OK 

132_2_ = '2' # PYCHOK OK 

133_3_ = '3' # PYCHOK OK 

134_4_ = '4' # PYCHOK OK 

135_a_ = 'a' # PYCHOK OK 

136_A_ = 'A' # PYCHOK OK 

137_a12_ = 'a12' # PYCHOK OK 

138_area_ = 'area' # PYCHOK OK 

139_Airy1830_ = 'Airy1830' # PYCHOK OK 

140_AiryModified_ = 'AiryModified' # PYCHOK OK 

141_ambiguous_ = 'ambiguous' # PYCHOK OK 

142_AMPERSAND_ = Str_('&') # PYCHOK OK 

143_an_ = 'an' # PYCHOK OK 

144_and_ = 'and' # PYCHOK OK 

145# _AND_ = _AMPERSAND_ # PYCHOK OK 

146_angle_ = 'angle' # PYCHOK OK 

147_antipodal_ = 'antipodal' # PYCHOK OK 

148_arg_ = 'arg' # PYCHOK OK 

149# _ASTERISK_ = _STAR_ # PYCHOK OK 

150_AT_ = Str_('@') # PYCHOK OK 

151_AtoZnoIO_ = _Slicer('ABCDEFGHJKLMNPQRSTUVWXYZ') # PYCHOK in .gars, .mgrs and .wgrs 

152_attribute_ = 'attribute' # PYCHOK OK 

153_azi1_ = 'azi1' # PYCHOK OK 

154_azi12_ = 'azi12' # PYCHOK OK 

155_azi2_ = 'azi2' # PYCHOK OK 

156_azimuth_ = 'azimuth' # PYCHOK OK 

157_b_ = 'b' # PYCHOK OK 

158_B_ = 'B' # PYCHOK OK 

159_BACKSLASH_ = Str_('\\') # PYCHOK OK 

160_band_ = 'band' # PYCHOK OK 

161_BANG_ = Str_('!') # PYCHOK OK 

162_BAR_ = Str_('|') # PYCHOK OK 

163_bearing_ = 'bearing' # PYCHOK OK 

164_Bessel1841_ = 'Bessel1841' # PYCHOK OK 

165_beta_ = 'beta' # PYCHOK OK 

166_by_ = 'by' # PYCHOK OK 

167_c_ = 'c' # PYCHOK OK 

168_C_ = 'C' # PYCHOK OK 

169_cartesian_ = 'cartesian' # PYCHOK OK 

170_center_ = 'center' # PYCHOK OK 

171# _CIRCUMFLEX_ = Str_('^') # PYCHOK OK 

172_Clarke1866_ = 'Clarke1866' # PYCHOK OK 

173_Clarke1880IGN_ = 'Clarke1880IGN' # PYCHOK OK 

174_clip_ = 'clip' # PYCHOK OK 

175_clipid_ = 'clipid' # PYCHOK OK 

176_coincident_ = 'coincident' # PYCHOK OK 

177_colinear_ = 'colinear' # PYCHOK OK 

178_COLON_ = Str_(':') # PYCHOK OK 

179_COLONSPACE_ = Str_(': ') # PYCHOK OK 

180_COMMA_ = Str_(',') # PYCHOK OK 

181_COMMASPACE_ = Str_(_COMMASPACE_) # PYCHOK OK 

182_composite_ = 'composite' # PYCHOK OK 

183_concentric_ = 'concentric' # PYCHOK OK 

184_convergence_ = _Prefix('convergence') # PYCHOK OK 

185_conversion_ = 'conversion' # PYCHOK OK 

186_convex_ = 'convex' # PYCHOK OK 

187_d_ = 'd' # PYCHOK OK 

188_D_ = 'D' # PYCHOK OK 

189_DASH_ = Str_('-') # PYCHOK == _MINUS_ 

190_datum_ = 'datum' # PYCHOK OK 

191_decode3_ = 'decode3' # PYCHOK OK 

192_deg_ = 'deg' # PYCHOK OK 

193_degrees_ = 'degrees' # PYCHOK OK 

194_degrees2_ = 'degrees2' # PYCHOK SQUARED 

195_delta_ = 'delta' # PYCHOK OK 

196_DEPRECATED_ = 'DEPRECATED' # PYCHOK OK 

197_DEQUALSPACED_ = Str_(' == ') # PYCHOK OK 

198_distance_ = 'distance' # PYCHOK OK 

199_distant_ = _Prefix('distant') # PYCHOK OK 

200_doesn_t_exist_ = "doesn't exist" # PYCHOK OK 

201_DOT_ = Str_('.') # PYCHOK OK 

202_DUNDER_all_ = '__all__' # PYCHOK OK 

203_DUNDER_name_ = '__name__' # PYCHOK _DUNDER_(NN, _name_, NN) 

204_duplicate_ = 'duplicate' # PYCHOK OK 

205_e_ = 'e' # PYCHOK OK 

206_E_ = 'E' # PYCHOK OK 

207_earth_ = 'earth' # PYCHOK OK 

208_easting_ = 'easting' # PYCHOK OK 

209_ecef_ = 'ecef' # PYCHOK OK 

210_edge_ = 'edge' # PYCHOK OK 

211_elevation_ = 'elevation' # PYCHOK OK 

212_ELLIPSIS_ = Str_('...') # PYCHOK OK 

213_ELLIPSIS4_ = Str_('....') # PYCHOK OK 

214# _ELLIPSISPACED_ = Str_(' ... ') # PYCHOK <https://www.ThePunctuationGuide.com/ellipses.html> 

215_ellipsoid_ = 'ellipsoid' # PYCHOK OK 

216_ellipsoidal_ = 'ellipsoidal' # PYCHOK OK 

217_encode_ = 'encode' # PYCHOK OK 

218_end_ = 'end' # PYCHOK OK 

219_epoch_ = 'epoch' # PYCHOK OK 

220_EQUAL_ = Str_('=') # PYCHOK OK 

221_EQUALSPACED_ = Str_(' = ') # PYCHOK OK 

222_Error_ = 'Error' # PYCHOK OK 

223_exceed_PI_radians_ = 'exceed PI radians' # PYCHOK OK 

224_exceeds_ = _Prefix('exceeds') # PYCHOK OK 

225# _EXCLAMATION_ = _BANG_ # PYCHOK OK 

226_exists_ = 'exists' # PYCHOK OK 

227_f_ = 'f' # PYCHOK OK 

228_F_ = 'F' # PYCHOK OK 

229_feet_ = 'feet' # PYCHOK OK 

230_few_ = 'few' # PYCHOK OK 

231_fi_ = 'fi' # PYCHOK OK 

232_finite_ = 'finite' # PYCHOK OK 

233_from_ = 'from' # PYCHOK OK 

234_g_ = 'g' # PYCHOK OK 

235_gamma_ = 'gamma' # PYCHOK OK 

236_GRS80_ = 'GRS80' # PYCHOK OK 

237_h_ = 'h' # PYCHOK OK 

238_H_ = 'H' # PYCHOK OK 

239_HASH_ = '#' # PYCHOK OK 

240_height_ = 'height' # PYCHOK OK 

241_hemipole_ = 'hemipole' # PYCHOK OK 

242_i_ = 'i' # PYCHOK OK 

243_immutable_ = 'immutable' # PYCHOK OK 

244_in_ = 'in' # PYCHOK OK 

245_incompatible_ = 'incompatible' # PYCHOK OK 

246_INF_ = 'INF' # PYCHOK OK 

247_infinite_ = 'infinite' # PYCHOK _not_finite_ 

248_initial_ = 'initial' # PYCHOK OK 

249_inside_ = 'inside' # PYCHOK OK 

250_insufficient_ = 'insufficient' # PYCHOK OK 

251_intersection_ = 'intersection' # PYCHOK OK 

252_Intl1924_ = 'Intl1924' # PYCHOK OK 

253_INV_ = 'INV' # PYCHOK INValid 

254_invalid_ = 'invalid' # PYCHOK OK 

255_invokation_ = 'invokation' # PYCHOK OK 

256_j_ = 'j' # PYCHOK OK 

257_k0_ = 'k0' # PYCHOK OK 

258_keyword_ = 'keyword' # PYCHOK OK 

259_kind_ = 'kind' # PYCHOK OK 

260_Krassovski1940_ = 'Krassovski1940' # PYCHOK OK 

261_Krassowsky1940_ = 'Krassowsky1940' # PYCHOK OK 

262_LANGLE_ = '<' # PYCHOK OK 

263_lam_ = 'lam' # PYCHOK OK 

264_lat_ = 'lat' # PYCHOK OK 

265_lat0_ = 'lat0' # PYCHOK OK 

266_lat1_ = 'lat1' # PYCHOK OK 

267_lat2_ = 'lat2' # PYCHOK OK 

268_latlon_ = 'latlon' # PYCHOK OK 

269_LatLon_ = 'LatLon' # PYCHOK OK 

270_LCURLY_ = '{' # PYCHOK LBRACE 

271_len_ = 'len' # PYCHOK OK 

272_limit_ = 'limit' # PYCHOK OK 

273_line_ = 'line' # PYCHOK OK 

274_LPAREN_ = '(' # PYCHOK OK 

275_lon_ = 'lon' # PYCHOK OK 

276_lon0_ = 'lon0' # PYCHOK OK 

277_lon1_ = 'lon1' # PYCHOK OK 

278_lon2_ = 'lon2' # PYCHOK OK 

279_low_ = 'low' # PYCHOK OK 

280_LSQUARE_ = '[' # PYCHOK LBRACK 

281_ltp_ = 'ltp' # PYCHOK OK 

282_m_ = 'm' # PYCHOK OK 

283_M_ = 'M' # PYCHOK OK 

284_m12_ = 'm12' # PYCHOK OK 

285_M12_ = 'M12' # PYCHOK OK 

286_M21_ = 'M21' # PYCHOK OK 

287_MANT_DIG_ = 'MANT_DIG' # PYCHOK OK 

288_MAX_ = 'MAX' # PYCHOK OK 

289_mean_ = 'mean' # PYCHOK OK 

290_meanOf_ = 'meanOf' # PYCHOK OK 

291_meridional_ = 'meridional' # PYCHOK OK 

292_meter_ = 'meter' # PYCHOK OK 

293_meter2_ = 'meter2' # PYCHOK SQUARED 

294_MGRS_ = 'MGRS' # PYCHOK OK 

295_MIN_ = 'MIN' # PYCHOK OK 

296_MINUS_ = _DASH_ # PYCHOK OK 

297_module_ = 'module' # PYCHOK OK 

298_n_ = 'n' # PYCHOK OK 

299_N_ = 'N' # PYCHOK OK 

300_n_a_ = 'n/a' # PYCHOK OK 

301_N_A_ = 'N/A' # PYCHOK OK 

302_NAD27_ = 'NAD27' # PYCHOK OK 

303_NAD83_ = 'NAD83' # PYCHOK OK 

304_name_ = 'name' # PYCHOK OK 

305_NAN_ = 'NAN' # PYCHOK OK 

306_near_ = _Dash('near') # PYCHOK OK 

307_nearestOn2_ = 'nearestOn2' # PYCHOK OK 

308_negative_ = 'negative' # PYCHOK OK 

309_NL_ = Str_('\n') # PYCHOK OK 

310_NLATvar_ = Str_(_NL_ + '@var ') # PYCHOK OK 

311_NLHASH_ = Str_(_NL_ + '# ') # PYCHOK OK 

312_NN_ = 'NN' # PYCHOK OK 

313_no_ = _Prefix('no') # PYCHOK OK 

314_northing_ = 'northing' # PYCHOK OK 

315_not_ = _Prefix('not') # PYCHOK OK 

316_NOTEQUAL_ = _BANG_ + _EQUAL_ # PYCHOK OK 

317_not_finite_ = 'not finite' # PYCHOK _not_(_finite_), _infinite_ 

318_not_scalar_ = 'not scalar' # PYCHOK _not_(_scalar_) 

319_NTF_ = 'NTF' # PYCHOK OK 

320_null_ = 'null' # PYCHOK OK 

321_number_ = 'number' # PYCHOK OK 

322_numpy_ = 'numpy' # PYCHOK OK 

323_Nv00_ = 'Nv00' # PYCHOK OK 

324_odd_ = 'odd' # PYCHOK OK 

325_of_ = 'of' # PYCHOK OK 

326_on_ = 'on' # PYCHOK OK 

327_opposite_ = 'opposite' # PYCHOK OK 

328_or_ = 'or' # PYCHOK OK 

329_other_ = 'other' # PYCHOK OK 

330_outside_ = 'outside' # PYCHOK OK 

331_overlap_ = 'overlap' # PYCHOK OK 

332_parallel_ = 'parallel' # PYCHOK OK 

333_PERCENT_ = '%' # PYCHOK OK 

334_PERCENTDOTSTAR_ = '%.*' # PYCHOK _DOT_(_PERCENT_, _STAR_) 

335_phi_ = 'phi' # PYCHOK OK 

336_PLUS_ = Str_('+') # PYCHOK OK 

337_PLUSMINUS_ = _PLUS_ + _MINUS_ # PYCHOK OK 

338_point_ = 'point' # PYCHOK OK 

339_points_ = 'points' # PYCHOK OK 

340_pole_ = 'pole' # PYCHOK OK 

341_precision_ = 'precision' # PYCHOK OK 

342_prime_vertical_ = 'prime_vertical' # PYCHOK OK 

343_pygeodesy_ = 'pygeodesy' # PYCHOK OK # in test/bases 

344_pygeodesy_abspath_ = 'pygeodesy_abspath' # PYCHOK OK 

345_PyPy__ = _PyPy__('PyPy ') # PYCHOK + _SPACE_ 

346_Python_ = _Python_('Python') # PYCHOK singleton 

347_python_ = 'python' # PYCHOK OK 

348_QUOTE1_ = "'" # PYCHOK OK 

349_QUOTE2_ = '"' # PYCHOK OK 

350_QUOTE3_ = "'''" # PYCHOK OK 

351# _QUOTE6_ = '"""' # PYCHOK OK 

352_R_ = 'R' # PYCHOK OK 

353_radians_ = 'radians' # PYCHOK OK 

354_radians2_ = 'radians2' # PYCHOK SQUARED 

355_radius_ = 'radius' # PYCHOK OK 

356_radius1_ = 'radius1' # PYCHOK OK 

357_radius2_ = 'radius2' # PYCHOK OK 

358_range_ = _Range('range') # PYCHOK OK 

359_RANGLE_ = '>' # PYCHOK OK 

360_RCURLY_ = '}' # PYCHOK RBRACE 

361_reciprocal_ = 'reciprocal' # PYCHOK OK 

362_reframe_ = 'reframe' # PYCHOK OK 

363_resolution_ = 'resolution' # PYCHOK OK 

364_rIn_ = 'rIn' # PYCHOK OK 

365_RPAREN_ = ')' # PYCHOK OK 

366_RSQUARE_ = ']' # PYCHOK RBRACK 

367_s_ = 's' # PYCHOK OK 

368_S_ = 'S' # PYCHOK OK 

369_s12_ = 's12' # PYCHOK OK 

370_S12_ = 'S12' # PYCHOK OK 

371_scalar_ = 'scalar' # PYCHOK OK 

372_scale_ = 'scale' # PYCHOK OK 

373_scale0_ = 'scale0' # PYCHOK OK 

374_scipy_ = 'scipy' # PYCHOK OK 

375_semi_circular_ = 'semi-circular' # PYCHOK OK 

376_sep_ = 'sep' # PYCHOK OK 

377_singular_ = 'singular' # PYCHOK OK 

378_SLASH_ = Str_('/') # PYCHOK OK 

379_small_ = 'small' # PYCHOK OK 

380_Sphere_ = 'Sphere' # PYCHOK OK 

381_spherical_ = 'spherical' # PYCHOK OK 

382_SPACE_ = Str_(' ') # PYCHOK OK 

383_specified_ = 'specified' # PYCHOK OK 

384_STAR_ = Str_('*') # PYCHOK OK 

385_start_ = 'start' # PYCHOK OK 

386_std_ = 'std' # PYCHOK OK 

387_stdev_ = 'stdev' # PYCHOK OK 

388_tbd_ = 'tbd' # PYCHOK OK 

389_TILDE_ = '~' # PYCHOK OK 

390_to_ = 'to' # PYCHOK OK 

391_tolerance_ = _Prefix('tolerance') # PYCHOK OK 

392_too_ = _Prefix('too') # PYCHOK OK 

393_transform_ = 'transform' # PYCHOK OK 

394_UNDER_ = Str_('_') # PYCHOK OK 

395_units_ = 'units' # PYCHOK OK 

396_UNUSED_ = 'UNUSED' # PYCHOK OK 

397_up_ = 'up' # PYCHOK OK 

398_UPS_ = 'UPS' # PYCHOK OK 

399_utf_8_ = 'utf-8' # PYCHOK OK 

400_UTM_ = 'UTM' # PYCHOK OK 

401_V_ = 'V' # PYCHOK OK 

402_valid_ = 'valid' # PYCHOK OK 

403_value_ = 'value' # PYCHOK OK 

404_version_ = 'version' # PYCHOK OK 

405_vs_ = 'vs' # PYCHOK OK 

406_W_ = 'W' # PYCHOK OK 

407_WGS72_ = 'WGS72' # PYCHOK OK 

408_WGS84_ = 'WGS84' # PYCHOK OK 

409_width_ = 'width' # PYCHOK OK 

410_with_ = 'with' # PYCHOK OK 

411_x_ = 'x' # PYCHOK OK 

412_X_ = 'X' # PYCHOK OK 

413_xyz_ = 'xyz' # PYCHOK OK 

414_y_ = 'y' # PYCHOK OK 

415_Y_ = 'Y' # PYCHOK OK 

416_z_ = 'z' # PYCHOK OK 

417_Z_ = 'Z' # PYCHOK OK 

418_zone_ = 'zone' # PYCHOK OK 

419 

420_EW_ = _E_ + _W_ # PYCHOK common cardinals 

421_NE_ = _N_ + _E_ # PYCHOK positive ones 

422_NS_ = _N_ + _S_ # PYCHOK OK 

423_NSEW_ = _NS_ + _EW_ # PYCHOK OK 

424_NW_ = _N_ + _W_ # PYCHOK OK 

425_SE_ = _S_ + _E_ # PYCHOK OK 

426_SW_ = _S_ + _W_ # PYCHOK negative ones 

427# _NESW_ = _NE_ + _SW_ # PYCHOK clockwise 

428 

429_DDOT_ = Str_(_DOT_ * 2) # PYCHOK OK 

430# _DEQUAL_ = Str_(_EQUAL_ * 2) # PYCHOK OK 

431# _DNL_ = Str_(_NL_ * 2) # PYCHOK OK 

432# _DSLASH_ = Str_(_SLASH_ * 2) # PYCHOK OK 

433# _DSTAR_ = Str_(_STAR_ * 2) # PYCHOK OK 

434_DUNDER_ = Str_(_UNDER_ * 2) # PYCHOK OK 

435 

436_LR_PAIRS = {_LANGLE_: _RANGLE_, 

437 _LCURLY_: _RCURLY_, 

438 _LPAREN_: _RPAREN_, 

439 _LSQUARE_: _RSQUARE_} # PYCHOK OK 

440 

441__all__ = (_NN_, # NOT MISSING! 

442 Str_.__name__) # classes 

443__version__ = '24.11.27' 

444 

445if __name__ == '__main__': 

446 

447 def _main(): 

448 from pygeodesy import itemsorted, printf 

449 

450 t = b = 0 

451 for n, v in itemsorted(locals(), asorted=False, reverse=True): 

452 if n.endswith(_UNDER_) and n.startswith(_UNDER_) and \ 

453 not n.startswith(_DUNDER_): 

454 t += 1 

455 b += len(v) 

456 m = n[1:-1] 

457 if m != v and m.replace(_UNDER_, _SPACE_) != v: 

458 printf('%4d: %s = %r', t, n, v) 

459 n = len(locals()) 

460 printf('%4d (%d) names, %s chars total, %.2f chars avg', t, n, b, float(b) / t, nl=1) 

461 

462 _main() 

463 

464# **) MIT License 

465# 

466# Copyright (C) 2016-2025 -- mrJean1 at Gmail -- All Rights Reserved. 

467# 

468# Permission is hereby granted, free of charge, to any person obtaining a 

469# copy of this software and associated documentation files (the "Software"), 

470# to deal in the Software without restriction, including without limitation 

471# the rights to use, copy, modify, merge, publish, distribute, sublicense, 

472# and/or sell copies of the Software, and to permit persons to whom the 

473# Software is furnished to do so, subject to the following conditions: 

474# 

475# The above copyright notice and this permission notice shall be included 

476# in all copies or substantial portions of the Software. 

477# 

478# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 

479# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 

480# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 

481# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR 

482# OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 

483# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 

484# OTHER DEALINGS IN THE SOFTWARE.