Merge lp:~divmod-dev/divmod.org/release-pyflakes-0.5.0 into lp:divmod.org

Proposed by Tristan Seligmann
Status: Merged
Merged at revision: 2686
Proposed branch: lp:~divmod-dev/divmod.org/release-pyflakes-0.5.0
Merge into: lp:divmod.org
Diff against target: 67 lines (+16/-8)
5 files modified
Pyflakes/LICENSE (+1/-2)
Pyflakes/MANIFEST.in (+2/-0)
Pyflakes/NEWS.txt (+6/-0)
Pyflakes/pyflakes/__init__.py (+1/-1)
Pyflakes/setup.py (+6/-5)
To merge this branch: bzr merge lp:~divmod-dev/divmod.org/release-pyflakes-0.5.0
Reviewer Review Type Date Requested Status
Jean-Paul Calderone Approve
Review via email: mp+73950@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Jean-Paul Calderone (exarkun) wrote :

Yea, merge that (no point doing anything else, since it's released already anyway ;).

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'Pyflakes/LICENSE'
2--- Pyflakes/LICENSE 2005-10-03 20:51:28 +0000
3+++ Pyflakes/LICENSE 2011-09-03 17:32:23 +0000
4@@ -1,5 +1,4 @@
5-
6-Copyright (c) 2005 Divmod, Inc., http://www.divmod.com/
7+Copyright 2005-2011 Divmod, Inc.
8
9 Permission is hereby granted, free of charge, to any person obtaining
10 a copy of this software and associated documentation files (the
11
12=== added file 'Pyflakes/MANIFEST.in'
13--- Pyflakes/MANIFEST.in 1970-01-01 00:00:00 +0000
14+++ Pyflakes/MANIFEST.in 2011-09-03 17:32:23 +0000
15@@ -0,0 +1,2 @@
16+include NEWS.txt
17+include LICENSE
18
19=== modified file 'Pyflakes/NEWS.txt'
20--- Pyflakes/NEWS.txt 2009-11-30 01:08:55 +0000
21+++ Pyflakes/NEWS.txt 2011-09-03 17:32:23 +0000
22@@ -1,3 +1,9 @@
23+0.5.0 (2011-09-02):
24+ - Convert pyflakes to use newer _ast infrastructure rather than compiler.
25+ - Support for new syntax in 2.7 (including set literals, set comprehensions,
26+ and dictionary comprehensions).
27+ - Make sure class names don't get bound until after class definition.
28+
29 0.4.0 (2009-11-25):
30 - Fix reporting for certain SyntaxErrors which lack line number
31 information.
32
33=== modified file 'Pyflakes/pyflakes/__init__.py'
34--- Pyflakes/pyflakes/__init__.py 2009-11-30 01:08:55 +0000
35+++ Pyflakes/pyflakes/__init__.py 2011-09-03 17:32:23 +0000
36@@ -1,2 +1,2 @@
37
38-__version__ = '0.4.0'
39+__version__ = '0.5.0'
40
41=== modified file 'Pyflakes/setup.py'
42--- Pyflakes/setup.py 2009-11-30 01:08:55 +0000
43+++ Pyflakes/setup.py 2011-09-03 17:32:23 +0000
44@@ -1,17 +1,18 @@
45 #!/usr/bin/python
46-# (c) 2005-2009 Divmod, Inc. See LICENSE file for details
47+# Copyright 2005-2011 Divmod, Inc. See LICENSE file for details
48
49 from distutils.core import setup
50
51 setup(
52 name="pyflakes",
53 license="MIT",
54- version="0.4.0",
55+ version="0.5.0",
56 description="passive checker of Python programs",
57 author="Phil Frost",
58- maintainer="Moe Aboulkheir",
59- maintainer_email="moe@divmod.com",
60- url="http://www.divmod.org/trac/wiki/DivmodPyflakes",
61+ author_email="indigo@bitglue.com",
62+ maintainer="Divmod developers",
63+ maintainer_email="divmod-dev@lists.launchpad.net",
64+ url="https://launchpad.net/pyflakes",
65 packages=["pyflakes", "pyflakes.scripts", "pyflakes.test"],
66 scripts=["bin/pyflakes"],
67 long_description="""Pyflakes is program to analyze Python programs and detect various errors. It

Subscribers

People subscribed via source and target branches

to all changes: