ned / cog

No description has been added.

Clone this repository (size: 124.5 KB): HTTPS / SSH
$ hg clone http://bitbucket.org/ned/cog/
commit 22: 9b7748130ad8
parent 21: 25c33b72ca7e
branch: default
Remove $Id fields, svn isn't updating them any more.
Ned Batchelder / ned
10 months ago

Changed (Δ651 bytes):

raw changeset »

changes.px (0 lines added, 1 lines removed)

cogapp/__init__.py (0 lines added, 2 lines removed)

cogapp/cogapp.py (0 lines added, 2 lines removed)

cogapp/makefiles.py (0 lines added, 2 lines removed)

cogapp/test_cogapp.py (0 lines added, 2 lines removed)

cogapp/test_makefiles.py (0 lines added, 2 lines removed)

cogapp/test_whiteutils.py (0 lines added, 2 lines removed)

cogapp/whiteutils.py (0 lines added, 2 lines removed)

index.px (0 lines added, 1 lines removed)

scripts/cog.py (0 lines added, 2 lines removed)

scripts/test_cog.py (0 lines added, 2 lines removed)

setup.py (0 lines added, 2 lines removed)

Up to file-list changes.px:

1
1
<?xml version="1.0" encoding="utf-8" ?>
2
<!-- $Id: changes.px 143 2008-05-24 14:59:47Z nedbat $ -->
3
2
<page title='Cog Change History'>
4
3
<history>
5
4
<what when='20051006T222500'>Split out from the main page.</what>

Up to file-list cogapp/__init__.py:

4
4
    Copyright 2004-2005, Ned Batchelder.
5
5
"""
6
6
7
# $Id: __init__.py 110 2005-08-27 22:35:20Z ned $
8
9
7
from cogapp import *

Up to file-list cogapp/cogapp.py:

4
4
    Copyright 2004-2009, Ned Batchelder.
5
5
"""
6
6
7
# $Id: cogapp.py 141 2008-05-22 10:56:43Z nedbat $
8
9
7
import copy, getopt, imp, os, re, shlex, string, sys, traceback
10
8
from cStringIO import StringIO
11
9

Up to file-list cogapp/makefiles.py:

4
4
    Copyright 2004-2009, Ned Batchelder.
5
5
"""
6
6
7
# $Id: makefiles.py 135 2008-05-21 12:05:43Z nedbat $
8
9
7
import path     # Non-standard, from http://www.jorendorff.com/articles/python/path
10
8
from whiteutils import reindentBlock
11
9

Up to file-list cogapp/test_cogapp.py:

4
4
    Copyright 2004-2009, Ned Batchelder.
5
5
"""
6
6
7
# $Id: test_cogapp.py 141 2008-05-22 10:56:43Z nedbat $
8
9
7
import unittest
10
8
import os, random, re, StringIO, stat, sys, tempfile
11
9
import path     # Non-standard, from http://www.jorendorff.com/articles/python/path

Up to file-list cogapp/test_makefiles.py:

4
4
    Copyright 2004-2005, Ned Batchelder.
5
5
"""
6
6
7
# $Id: test_makefiles.py 135 2008-05-21 12:05:43Z nedbat $
8
9
7
import unittest                                 # This is a unittest, so this is fundamental.
10
8
import StringIO, shutil, os, random, types, tempfile    # We need these modules to write the tests.
11
9
import makefiles

Up to file-list cogapp/test_whiteutils.py:

4
4
    Copyright 2004-2005, Ned Batchelder.
5
5
"""
6
6
7
# $Id: test_whiteutils.py 110 2005-08-27 22:35:20Z ned $
8
9
7
import unittest
10
8
from whiteutils import *
11
9

Up to file-list cogapp/whiteutils.py:

4
4
    Copyright 2004-2009, Ned Batchelder.
5
5
"""
6
6
7
# $Id: whiteutils.py 110 2005-08-27 22:35:20Z ned $
8
9
7
import re
10
8
11
9
def whitePrefix(strings):

Up to file-list index.px:

1
1
<?xml version="1.0" encoding="utf-8" ?>
2
<!-- $Id: index.px 143 2008-05-24 14:59:47Z nedbat $ -->
3
2
<page title='Cog'>
4
3
<section title='Cog' order='50'/>
5
4
<history>

Up to file-list scripts/cog.py:

5
5
    Copyright 2004-2005, Ned Batchelder.
6
6
"""
7
7
8
# $Id: cog.py 110 2005-08-27 22:35:20Z ned $
9
10
8
import time
11
9
start = time.clock()
12
10

Up to file-list scripts/test_cog.py:

5
5
    Copyright 2004-2009, Ned Batchelder.
6
6
"""
7
7
8
# $Id: test_cog.py 110 2005-08-27 22:35:20Z ned $
9
10
8
import unittest, sys
11
9
12
10
bCoverage = ('-cover' in sys.argv or '--cover' in sys.argv)

Up to file-list setup.py:

5
5
    Copyright 2004-2008, Ned Batchelder.
6
6
"""
7
7
8
# $Id: setup.py 138 2008-05-21 13:24:40Z nedbat $
9
10
8
from distutils.core import setup
11
9
setup(
12
10
    name = 'cog',