Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
mwclient
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
WebU
shared
mwclient
Commits
cd37ef0a
Commit
cd37ef0a
authored
15 years ago
by
Bryan Tong Minh
Browse files
Options
Downloads
Patches
Plain Diff
simplejson conflict fix
parent
09b68e9b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
mwclient/RELEASE-NOTES.txt
+2
-0
2 additions, 0 deletions
mwclient/RELEASE-NOTES.txt
mwclient/__init__.py
+1
-1
1 addition, 1 deletion
mwclient/__init__.py
with
3 additions
and
1 deletion
mwclient/RELEASE-NOTES.txt
+
2
−
0
View file @
cd37ef0a
...
@@ -10,6 +10,8 @@ Mwclient 0.6.4 is unreleased.
...
@@ -10,6 +10,8 @@ Mwclient 0.6.4 is unreleased.
* Added support for builtin json library
* Added support for builtin json library
* Handle badtoken once
* Handle badtoken once
* Bug 2690034: Fix revision iteration
* Bug 2690034: Fix revision iteration
* Fix module conflict with simplejson-1.x by inserting mwclient path at the
beginning of sys.path instead of the end
== Changes in version 0.6.3 ==
== Changes in version 0.6.3 ==
* Added domain parameter to login.
* Added domain parameter to login.
...
...
This diff is collapsed.
Click to expand it.
mwclient/__init__.py
+
1
−
1
View file @
cd37ef0a
...
@@ -26,7 +26,7 @@
...
@@ -26,7 +26,7 @@
import
sys
as
_sys
import
sys
as
_sys
import
os
as
_os
import
os
as
_os
_path
=
_os
.
path
.
dirname
(
__file__
)
_path
=
_os
.
path
.
dirname
(
__file__
)
_sys
.
path
.
append
(
_os
.
path
.
abspath
(
_path
))
_sys
.
path
.
insert
(
0
,
_os
.
path
.
abspath
(
_path
))
from
errors
import
*
from
errors
import
*
from
client
import
Site
,
__ver__
from
client
import
Site
,
__ver__
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment