MCPcopy Index your code
hub / github.com/python/cpython / npgettext

Method npgettext

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

Source from the content-addressed store, hash-verified

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

Callers 1

Calls 2

_as_int2Function · 0.85
npgettextMethod · 0.45

Tested by 1