← Back to team overview

divmod-dev team mailing list archive

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

 

Tristan Seligmann has proposed merging lp:~divmod-dev/divmod.org/release-pyflakes-0.5.0 into lp:divmod.org.

Requested reviews:
  Divmod-dev (divmod-dev)

For more details, see:
https://code.launchpad.net/~divmod-dev/divmod.org/release-pyflakes-0.5.0/+merge/73950
-- 
https://code.launchpad.net/~divmod-dev/divmod.org/release-pyflakes-0.5.0/+merge/73950
Your team Divmod-dev is requested to review the proposed merge of lp:~divmod-dev/divmod.org/release-pyflakes-0.5.0 into lp:divmod.org.
=== modified file 'Pyflakes/LICENSE'
--- Pyflakes/LICENSE	2005-10-03 20:51:28 +0000
+++ Pyflakes/LICENSE	2011-09-03 17:32:23 +0000
@@ -1,5 +1,4 @@
-
-Copyright (c) 2005 Divmod, Inc., http://www.divmod.com/
+Copyright 2005-2011 Divmod, Inc.
 
 Permission is hereby granted, free of charge, to any person obtaining
 a copy of this software and associated documentation files (the

=== added file 'Pyflakes/MANIFEST.in'
--- Pyflakes/MANIFEST.in	1970-01-01 00:00:00 +0000
+++ Pyflakes/MANIFEST.in	2011-09-03 17:32:23 +0000
@@ -0,0 +1,2 @@
+include NEWS.txt
+include LICENSE

=== modified file 'Pyflakes/NEWS.txt'
--- Pyflakes/NEWS.txt	2009-11-30 01:08:55 +0000
+++ Pyflakes/NEWS.txt	2011-09-03 17:32:23 +0000
@@ -1,3 +1,9 @@
+0.5.0 (2011-09-02):
+  - Convert pyflakes to use newer _ast infrastructure rather than compiler.
+  - Support for new syntax in 2.7 (including set literals, set comprehensions,
+    and dictionary comprehensions).
+  - Make sure class names don't get bound until after class definition.
+
 0.4.0 (2009-11-25):
   - Fix reporting for certain SyntaxErrors which lack line number
     information.

=== modified file 'Pyflakes/pyflakes/__init__.py'
--- Pyflakes/pyflakes/__init__.py	2009-11-30 01:08:55 +0000
+++ Pyflakes/pyflakes/__init__.py	2011-09-03 17:32:23 +0000
@@ -1,2 +1,2 @@
 
-__version__ = '0.4.0'
+__version__ = '0.5.0'

=== modified file 'Pyflakes/setup.py'
--- Pyflakes/setup.py	2009-11-30 01:08:55 +0000
+++ Pyflakes/setup.py	2011-09-03 17:32:23 +0000
@@ -1,17 +1,18 @@
 #!/usr/bin/python
-# (c) 2005-2009 Divmod, Inc.  See LICENSE file for details
+# Copyright 2005-2011 Divmod, Inc.  See LICENSE file for details
 
 from distutils.core import setup
 
 setup(
     name="pyflakes",
     license="MIT",
-    version="0.4.0",
+    version="0.5.0",
     description="passive checker of Python programs",
     author="Phil Frost",
-    maintainer="Moe Aboulkheir",
-    maintainer_email="moe@xxxxxxxxxx",
-    url="http://www.divmod.org/trac/wiki/DivmodPyflakes";,
+    author_email="indigo@xxxxxxxxxxx",
+    maintainer="Divmod developers",
+    maintainer_email="divmod-dev@xxxxxxxxxxxxxxxxxxx",
+    url="https://launchpad.net/pyflakes";,
     packages=["pyflakes", "pyflakes.scripts", "pyflakes.test"],
     scripts=["bin/pyflakes"],
     long_description="""Pyflakes is program to analyze Python programs and detect various errors. It


Follow ups