comparison mercurial/util.py @ 23543:4dd8a6a1240d

spelling: fixes from proofreading of spell checker issues
author Mads Kiilerich <madski@unity3d.com>
date Thu, 17 Apr 2014 22:47:38 +0200
parents b25f07cb5399
children 94951db84fc0
comparison
equal deleted inserted replaced
23542:8b5adc6b72ae 23543:4dd8a6a1240d
550 550
551 Python's garbage collector triggers a GC each time a certain number of 551 Python's garbage collector triggers a GC each time a certain number of
552 container objects (the number being defined by gc.get_threshold()) are 552 container objects (the number being defined by gc.get_threshold()) are
553 allocated even when marked not to be tracked by the collector. Tracking has 553 allocated even when marked not to be tracked by the collector. Tracking has
554 no effect on when GCs are triggered, only on what objects the GC looks 554 no effect on when GCs are triggered, only on what objects the GC looks
555 into. As a workaround, disable GC while building complexe (huge) 555 into. As a workaround, disable GC while building complex (huge)
556 containers. 556 containers.
557 557
558 This garbage collector issue have been fixed in 2.7. 558 This garbage collector issue have been fixed in 2.7.
559 """ 559 """
560 def wrapper(*args, **kwargs): 560 def wrapper(*args, **kwargs):