MCPcopy Index your code
hub / github.com/RustPython/RustPython / npgettext

Method npgettext

Lib/gettext.py:309–316  ·  view source on GitHub ↗
(self, context, msgid1, msgid2, n)

Source from the content-addressed store, hash-verified

307 return message
308
309 def npgettext(self, context, msgid1, msgid2, n):
310 if self._fallback:
311 return self._fallback.npgettext(context, msgid1, msgid2, n)
312 n = _as_int2(n)
313 if n == 1:
314 return msgid1
315 else:
316 return msgid2
317
318 def info(self):
319 return self._info

Callers 1

Calls 2

_as_int2Function · 0.85
npgettextMethod · 0.45

Tested by 1