Timeline
Mar 30, 2013:
- 11:31 PM Changeset [1195:381efdb16820] by
- Use `stdlib_stat` instead of `std_stat`. The former should be more familiar, so that other developers more easily grasp what's meant.
- 11:27 PM Changeset [1194:29b0cda2b042] by
- Use `except ExceptionClass as exc` for future Python 3 compatibility.
- 11:17 PM Changeset [1193:9510803a64b5] by
- Use `reversed(list)` instead of `list.reverse`. The latter was only used for Python 2.3 compatibility years ago.
- 10:38 PM Changeset [1192:6f3cd8c0203d] by
- Renamed `__Node` to `_Node` to satisfy Pylint. Removed `__cmp__`.
- 10:33 PM Changeset [1191:a0759cf884c8] by
- Use context managers to convert to ftputil exceptions. Example: Previously: new_dir = _try_with_os_error(self._session.pwd) Now: with ftplib_error_to_ftp_os_error: new_dir = self._session.pwd() Although the previous approach usually led to shorter code, the new approach looks more natural.
- 8:17 PM Changeset [1190:46a745d8cf24] by
- Prefer `import ftputil.xyz` over `from ftputil import xyz`. I applied this to `file_transfer` and `lrucache` module. There are still one or two places that use `from ftputil import FTPHost`.
- 7:57 PM Changeset [1189:a62823dbff88] by
- Removed tests for Python 2.4. At least Python 2.6 is required now.
- 7:44 PM Changeset [1188:d953d12ea592] by
- Try to find uses of the deprecated `ftp_error` and `ftp_stat` modules.
- 7:39 PM Changeset [1187:08c3d37b6a5f] by
- Simplified module names (`ftputil.ftp_xyz` -> `ftputil.xyz`).
- 10:31 AM Changeset [1186:5b840cc6d2f6] by
- Don't forget to push released changes to repositories.
- 10:24 AM Changeset [1185:65debd761434] by
- Added tag last_with_python2.4_support for changeset e7e19b4044c9
- 10:23 AM Changeset [1184:cb0671073cbd] by
- Deal with some Pylint warnings. Mostly disabled warnings but also fixed a few (for example, by adding some docstrings).
- 9:46 AM Changeset [1183:80ac4f31116b] by
- Use capitalization as recommened in PEP 8.
- 9:36 AM Changeset [1182:4a0e7b06df35] by
- Update docs and register new version before sending announcement.
- 9:03 AM Changeset [1181:eeb97c846556] by
- Added tag release2_8 for changeset e7e19b4044c9
- 9:02 AM Documentation edited by
- (diff)
- 8:59 AM Milestone 2.8 completed
- 8:58 AM Download edited by
- (diff)
- 8:44 AM Ticket #69 (Error parsing directory holding items with names consisting of space ...) closed by
-
fixed: I set this ticket to "fixed" because I changed the
ValueError
to the … - 8:27 AM Changeset [1180:e7e19b4044c9] by
- Use more idiomatic wording in "real test" information.
- 8:24 AM Changeset [1179:9c9b4b8039ec] by
- `make patch && make docs`
- 8:22 AM Changeset [1178:5e5f0234da08] by
- Updated version to 2.8.
- 8:22 AM Changeset [1177:70fbddd97991] by
- Removed "beta" from ftputil 2.8 (beta) announcement.
- 8:17 AM Changeset [1176:ec22ffd24fd4] by
- Added tag last_with_python2.3_support for changeset 3335b387c7d2
Mar 29, 2013:
- 10:30 PM Changeset [1175:1ef0c4ae10a6] by
- Commented out debugger invocation.
- 10:30 PM Changeset [1174:beb33039ab61] by
- Added second code snippet for ticket #71.
- 9:29 PM Changeset [1173:053956fc506c] by
- Some example code to investigate ticket #71.
- 8:12 PM Changeset [1172:41a53d30c4cb] by
- Added `MANIFEST` to `.hgignore`.
- 8:10 PM Changeset [1171:50c6f742cb09] by
- Use uppercase letters at start of comments in `.hgignore` file.
Jan 23, 2013:
- 5:36 PM Ticket #71 (receiving TemporaryError: 450 2 J-a: No such file or directory in ...) created by
- First of all i want to thank you for your work. I'm incurring in a …
Note: See TracTimeline
for information about the timeline view.