Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Use sys.version_info instead of sys.version in packaging. | Éric Araujo | 2012-02-10 | 8 | -17/+23 |
| | | | | | | | | | | | | | The contents of this attribute are an implementation detail, as documented for #9442, so we should not parse it, to support non-CPython VMs with distutils2 in the future. Unfortunately, one use comes directly from PEP 345, so an edit will have to be agreed before fixing the code (see comment in p7g.markers). Other remaining uses are found in p7g.compiler and could be replaced by the platform module (which also parses sys.version, but then it wouldn’t be my fault :) | ||||
* | Branch merge | Éric Araujo | 2012-02-10 | 11 | -253/+167 |
|\ | |||||
| * | Start improving 2to3 code in packaging (#13462). | Éric Araujo | 2012-02-09 | 6 | -194/+97 |
| | | | | | | | | | | | | - Change the fixers used in tests to something not provided by lib2to3 - Test conversion of doctests in text files - Factor out test boilerplate into a common method | ||||
| * | Synchronize packaging.tests.support with distutils2 | Éric Araujo | 2012-02-09 | 1 | -19/+22 |
| | | |||||
| * | More boolean tests for packaging metadata environment markers | Éric Araujo | 2012-02-09 | 1 | -3/+7 |
| | | |||||
| * | Remove unneeded import | Éric Araujo | 2012-02-09 | 1 | -1/+1 |
| | | |||||
| * | Group commands by topic in “pysetup run --list-commands” output. | Éric Araujo | 2012-02-09 | 3 | -36/+40 |
| | | | | | | | | | | | | This fixes a regression from distutils, where “setup.py --help-commands” prints out commands grouped by topic (i.e. building vs. installing), which is more useful than using sorted. | ||||
* | | Undocument and clean up sqlite3.OptimizedUnicode | Petri Lehtinen | 2012-02-09 | 10 | -50/+24 |
| | | | | | | | | Closes #13921. | ||||
* | | merge from 3.2 | Senthil Kumaran | 2012-02-09 | 2 | -1/+7 |
|\ \ | | | | | | | | | | Issue #9021 - Introduce copy module better in the docs. | ||||
| * | | Issue #9021 - Introduce copy module better. Doc changes suggested by Terry | Senthil Kumaran | 2012-02-09 | 2 | -1/+7 |
| | | | | | | | | | | | | Reedy. | ||||
* | | | merged from 3.2 | Senthil Kumaran | 2012-02-09 | 4 | -11/+17 |
|\ \ \ | |/ / | | | | | | | | | | Issue #6005: Examples in the socket library documentation use sendall, where relevant, instead send method. | ||||
| * | | Fix Issue #6005: Examples in the socket library documentation use sendall, | Senthil Kumaran | 2012-02-09 | 4 | -11/+17 |
| | | | | | | | | | | | | where relevant, instead send method. | ||||
* | | | Undo a bad mq management thingy. | Brett Cannon | 2012-02-09 | 1 | -44/+0 |
| | | | |||||
* | | | Whitespace normalization. | Brett Cannon | 2012-02-08 | 1 | -1/+0 |
| | | | |||||
* | | | Clarify a NEWS entry. | Brett Cannon | 2012-02-08 | 1 | -1/+1 |
| | | | |||||
* | | | Use the cwd when the empty string is found in sys.path. This leads to | Brett Cannon | 2012-02-08 | 3 | -1/+58 |
| | | | | | | | | | | | | | | | __file__ being an absolute path when the module is found in the current directory. | ||||
* | | | Move setup code from importlib.__init__ to | Brett Cannon | 2012-02-08 | 2 | -27/+47 |
| | | | | | | | | | | | | importlib._bootstrap._setup(). | ||||
* | | | Don't fail in the face of a lacking attribute when wrapping a | Brett Cannon | 2012-02-08 | 1 | -1/+2 |
| | | | | | | | | | | | | function. | ||||
* | | | get_terminal_size() can also fail with ENOTTY if the fd is not connected to ↵ | Antoine Pitrou | 2012-02-08 | 1 | -2/+9 |
| | | | | | | | | | | | | a terminal. | ||||
* | | | Relax tests to fix buildbot failure | Antoine Pitrou | 2012-02-08 | 2 | -4/+4 |
| | | | |||||
* | | | Issue #13609: Add two functions to query the terminal size: | Antoine Pitrou | 2012-02-08 | 10 | -5/+339 |
| | | | | | | | | | | | | | | | os.get_terminal_size (low level) and shutil.get_terminal_size (high level). Patch by Zbigniew Jędrzejewski-Szmek. | ||||
* | | | Backout f8409b3d6449: the PEP 410 is not accepted yet | Victor Stinner | 2012-02-08 | 9 | -814/+174 |
| | | | |||||
* | | | Issue #13845: Fix NEWS entry, the change is specific to Windows | Victor Stinner | 2012-02-08 | 1 | -3/+3 |
| | | | |||||
* | | | PEP 410 | Victor Stinner | 2012-02-08 | 9 | -174/+814 |
| | | | |||||
* | | | Skip test_threading.test_reinit_tls_after_fork() on platforms where fork() | Charles-François Natali | 2012-02-08 | 1 | -0/+1 |
|\ \ \ | |/ / | | | | | | | can't be called reliably from a worker thread. | ||||
| * | | Skip test_threading.test_reinit_tls_after_fork() on platforms where fork() | Charles-François Natali | 2012-02-08 | 1 | -0/+1 |
| | | | | | | | | | | | | can't be called reliably from a worker thread. | ||||
* | | | Issue #8184: multiprocessing: On Windows, don't set SO_REUSEADDR on Connection | Charles-François Natali | 2012-02-08 | 4 | -3/+26 |
| |/ |/| | | | | | | | sockets, and set FILE_FLAG_FIRST_PIPE_INSTANCE on named pipes, to make sure two listeners can't bind to the same socket/pipe (or any existing socket/pipe). | ||||
* | | Issue #13964: Skip os.*utime*() tests if os.stat() doesn't support timestamp | Victor Stinner | 2012-02-08 | 2 | -1/+11 |
| | | | | | | | | with a subsecond resolution | ||||
* | | Issue #13964: Split os.*utime*() subsecond tests into multiple tests to help | Victor Stinner | 2012-02-08 | 2 | -115/+120 |
| | | | | | | | | debugging | ||||
* | | Issue #13964: Test also os.futimesat() | Victor Stinner | 2012-02-08 | 1 | -1/+8 |
| | | |||||
* | | Issue #13964: Write tests for new os.*utime*() functions | Victor Stinner | 2012-02-08 | 1 | -0/+37 |
| | | |||||
* | | What's New in 3.3: reorder modules | Victor Stinner | 2012-02-08 | 1 | -79/+79 |
| | | | | | | | | Remove also duplicate functions in the "os" module section | ||||
* | | What's New in 3.3: Fix time module doc | Victor Stinner | 2012-02-08 | 1 | -3/+3 |
| | | |||||
* | | Issue #13845: time.time() now uses GetSystemTimeAsFileTime() instead of ftime() | Victor Stinner | 2012-02-07 | 2 | -8/+29 |
| | | | | | | | | | | to have a resolution of 100 ns instead of 1 ms (the clock accuracy is between 0.5 ms and 15 ms). | ||||
* | | Issue #13846: Add time.monotonic(), monotonic clock. | Victor Stinner | 2012-02-07 | 4 | -16/+94 |
| | | |||||
* | | Backout d2c1521ad0a1: _Py_IDENTIFIER() uses UTF-8 again | Victor Stinner | 2012-02-07 | 1 | -2/+3 |
| | | |||||
* | | Re-order importlib benchmarks to be consistent. Also print out what ↵ | Brett Cannon | 2012-02-07 | 1 | -6/+8 |
| | | | | | | | | implementation of __import__ is used. | ||||
* | | Merge | Brett Cannon | 2012-02-07 | 7 | -15/+18 |
|\ \ | |||||
| * \ | Null merge for reverted fix for #13807. | Vinay Sajip | 2012-02-06 | 0 | -0/+0 |
| |\ \ | | |/ | |||||
| | * | Null merge for reverted fix for #13807. | Vinay Sajip | 2012-02-06 | 0 | -0/+0 |
| | |\ | |||||
| | | * | Revert fix for #13807 mistakenly applied in this branch. | Vinay Sajip | 2012-02-03 | 1 | -1/+1 |
| | | | | |||||
| * | | | Merge branch '3.2' | Petri Lehtinen | 2012-02-06 | 1 | -0/+3 |
| |\ \ \ | | |/ / | |||||
| | * | | Issue #10811: Fix recursive usage of cursors. Instead of crashing, raise a ↵ | Petri Lehtinen | 2012-02-06 | 4 | -10/+45 |
| | | | | | | | | | | | | | | | | ProgrammingError now. | ||||
| * | | | Following Nick's suggestion, rename posix.fdlistdir() to posix.flistdir(), to | Charles-François Natali | 2012-02-06 | 7 | -15/+15 |
| | | | | | | | | | | | | | | | | | | | | be consistent with other functions accepting file descriptors (fdlistdir() was added in 3.3, so hasn't been released yet). | ||||
* | | | | Have importlib.test.benchmark test with tabnanny as a medium-sized test. | Brett Cannon | 2012-02-07 | 1 | -32/+58 |
|/ / / | |||||
* | | | merge 3.2 | Benjamin Peterson | 2012-02-06 | 1 | -1/+0 |
|\ \ \ | |/ / | |||||
| * | | merge heads | Benjamin Peterson | 2012-02-06 | 22 | -84/+182 |
| |\ \ | |||||
| * | | | bltinmod is borrowed, so it shouldn't be decrefed | Benjamin Peterson | 2012-02-06 | 1 | -1/+0 |
| | | | | |||||
* | | | | Fix typos in comments. | Éric Araujo | 2012-02-06 | 1 | -3/+3 |
| | | | | | | | | | | | | | | | | | | | | Reported by David-Sarah Hopwood on the Bitbucket bug tracker of Tarek’s former verlib/distutils.version project. | ||||
* | | | | Issue #10881: merge | Ned Deily | 2012-02-06 | 2 | -10/+15 |
|\ \ \ \ | | |/ / | |/| | |