summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2009-12-31 21:02:33 +0100
committerhut <hut@lavabit.com>2009-12-31 21:02:33 +0100
commitad1a420413bdff0f07bdc7023662ef8e6f7a5fff (patch)
tree93f60c2f12cd9f39c7eab23d7f528d79f5fd94f7
parent4365df83d685ac4d27c6453eeef3baf27620dc7e (diff)
downloadranger-ad1a420413bdff0f07bdc7023662ef8e6f7a5fff.tar.gz
cleanups
-rw-r--r--doc/uml/128002.diagram6
-rw-r--r--ranger/commands.py2
-rw-r--r--ranger/fm.py10
3 files changed, 13 insertions, 5 deletions
diff --git a/doc/uml/128002.diagram b/doc/uml/128002.diagram
index ed57a90d..b101cd33 100644
--- a/doc/uml/128002.diagram
+++ b/doc/uml/128002.diagram
@@ -166,7 +166,10 @@ relationcanvas 135938 relation_ref 171266 // <generalisation>
   no_multiplicity_a no_multiplicity_b
 end
 relationcanvas 137346 relation_ref 191234 // <generalisation>
-  from ref 137218 z 2001 to ref 134530
+  geometry VHV
+  from ref 137218 z 2001 to point 500 370
+  line 147330 z 2001 to point 598 370
+  line 147458 z 2001 to ref 134530
   no_role_a no_role_b
   no_multiplicity_a no_multiplicity_b
 end
@@ -203,6 +206,7 @@ end
 relationcanvas 145538 relation_ref 198530 // <aggregation>
   geometry HVr
   decenter_begin 713
+  decenter_end 581
   from ref 129922 z 2001 to point 559 417
   line 146306 z 2001 to ref 137218
   no_role_a no_role_b
diff --git a/ranger/commands.py b/ranger/commands.py
index 2f5a2b52..dcc70dc7 100644
--- a/ranger/commands.py
+++ b/ranger/commands.py
@@ -286,6 +286,8 @@ for varname, var in vars().copy().items():
 			by_name[var.name or varname] = var
 	except TypeError:
 		pass
+del varname
+del var
 
 def alias(**kw):
 	for key, value in kw.items():
diff --git a/ranger/fm.py b/ranger/fm.py
index 45a419a5..2fb7e21c 100644
--- a/ranger/fm.py
+++ b/ranger/fm.py
@@ -53,11 +53,13 @@ class FM(Actions):
 		self.input_blocked_until = time() + sec
 
 	def loop(self):
-		"""The main loop consists of:
+		"""
+		The main loop consists of:
 		1. reloading bookmarks if outdated
-		2. drawing and finalizing ui
-		3. reading and handling user input
-		4. after X loops: collecting unused directory objects
+		2. letting the loader work
+		3. drawing and finalizing ui
+		4. reading and handling user input
+		5. after X loops: collecting unused directory objects
 		"""
 
 		self.env.enter_dir(self.env.path)
/a> 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417